OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:RootWindowController
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/ash/
root_window_controller.cc
220
void
RootWindowController
::CreateForPrimaryDisplay(
222
RootWindowController
* controller = new
RootWindowController
(root);
223
controller->Init(
RootWindowController
::PRIMARY,
227
void
RootWindowController
::CreateForSecondaryDisplay(aura::RootWindow * root) {
228
RootWindowController
* controller = new
RootWindowController
(root);
229
controller->Init(
RootWindowController
::SECONDARY, false /* first run */);
232
void
RootWindowController
::CreateForVirtualKeyboardDisplay(
234
RootWindowController
* controller = new RootWindowController(root)
[
all
...]
root_window_controller.h
77
// The
RootWindowController
for particular root window is stored in
80
class ASH_EXPORT
RootWindowController
: public ShellObserver {
83
// Creates and Initialize the
RootWindowController
for primary display.
86
// Creates and Initialize the
RootWindowController
for secondary displays.
89
// Creates and Initialize the
RootWindowController
for virtual
93
// Returns a
RootWindowController
that has a launcher for given
94
// |window|. This returns the
RootWindowController
for the |window|'s
96
//
RootWindowController
otherwise.
97
static
RootWindowController
* ForLauncher(aura::Window* window);
99
// Returns a
RootWindowController
of the window's root window
[
all
...]
Completed in 323 milliseconds