mirror of
https://gitee.com/energye/energy.git
synced 2024-12-15 01:41:49 +08:00
35 lines
589 B
Go
35 lines
589 B
Go
//----------------------------------------
|
|
//
|
|
// Copyright © yanghy. All Rights Reserved.
|
|
//
|
|
// Licensed under Apache License Version 2.0, January 2004
|
|
//
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
//----------------------------------------
|
|
|
|
package process
|
|
|
|
var Current = ¤t{}
|
|
|
|
type current struct {
|
|
browserId int32
|
|
frameId int64
|
|
}
|
|
|
|
func (m *current) BrowserId() int32 {
|
|
return m.browserId
|
|
}
|
|
|
|
func (m *current) FrameId() int64 {
|
|
return m.frameId
|
|
}
|
|
|
|
func (m *current) SetBrowserId(v int32) {
|
|
m.browserId = v
|
|
}
|
|
|
|
func (m *current) SetFrameId(v int64) {
|
|
m.frameId = v
|
|
}
|