OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:WindowId
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
desktop_capture_types.h
25
typedef intptr_t
WindowId
;
27
const
WindowId
kNullWindowId = 0;
window_capturer.h
28
typedef webrtc::
WindowId
WindowId
;
31
WindowId
id;
51
virtual bool SelectWindow(
WindowId
id) = 0;
/external/chromium_org/third_party/webrtc/base/
window.h
30
class
WindowId
{
43
static
WindowId
Cast(uint64 id) {
45
return
WindowId
(reinterpret_cast<
WindowId
::WindowT>(id));
47
return
WindowId
(static_cast<
WindowId
::WindowT>(id));
59
WindowId
() : id_(0) {}
60
WindowId
(const WindowT& id) : id_(id) {} // NOLINT
63
bool Equals(const
WindowId
& other) const {
119
inline std::string ToString(const
WindowId
& window)
[
all
...]
Completed in 195 milliseconds