Home
last modified time | relevance | path

Searched refs:Shell (Results 1 – 25 of 638) sorted by relevance

12345678910>>...26

/external/chromium_org/content/shell/browser/
Dshell.cc33 const int Shell::kDefaultTestWindowWidthDip = 800;
34 const int Shell::kDefaultTestWindowHeightDip = 600;
36 std::vector<Shell*> Shell::windows_;
37 base::Callback<void(Shell*)> Shell::shell_created_callback_;
39 bool Shell::quit_message_loop_ = true;
41 class Shell::DevToolsWebContentsObserver : public WebContentsObserver {
43 DevToolsWebContentsObserver(Shell* shell, WebContents* web_contents) in DevToolsWebContentsObserver()
54 Shell* shell_;
59 Shell::Shell(WebContents* web_contents) in Shell() function in content::Shell
77 Shell::~Shell() { in ~Shell()
[all …]
Dshell_android.cc23 void Shell::PlatformInitialize(const gfx::Size& default_window_size) { in PlatformInitialize()
26 void Shell::PlatformExit() { in PlatformExit()
29 void Shell::PlatformCleanUp() { in PlatformCleanUp()
36 void Shell::PlatformEnableUIControl(UIControl control, bool is_enabled) { in PlatformEnableUIControl()
43 void Shell::PlatformSetAddressBarURL(const GURL& url) { in PlatformSetAddressBarURL()
49 void Shell::PlatformSetIsLoading(bool loading) { in PlatformSetIsLoading()
54 void Shell::PlatformCreateWindow(int width, int height) { in PlatformCreateWindow()
58 void Shell::PlatformSetContents() { in PlatformSetContents()
64 void Shell::PlatformResizeSubViews() { in PlatformResizeSubViews()
68 void Shell::PlatformSetTitle(const base::string16& title) { in PlatformSetTitle()
[all …]
Dshell_aura.cc17 void Shell::PlatformInitialize(const gfx::Size& default_window_size) { in PlatformInitialize()
24 void Shell::PlatformExit() { in PlatformExit()
31 void Shell::PlatformCleanUp() { in PlatformCleanUp()
34 void Shell::PlatformEnableUIControl(UIControl control, bool is_enabled) { in PlatformEnableUIControl()
37 void Shell::PlatformSetAddressBarURL(const GURL& url) { in PlatformSetAddressBarURL()
40 void Shell::PlatformSetIsLoading(bool loading) { in PlatformSetIsLoading()
43 void Shell::PlatformCreateWindow(int width, int height) { in PlatformCreateWindow()
50 void Shell::PlatformSetContents() { in PlatformSetContents()
60 void Shell::PlatformResizeSubViews() { in PlatformResizeSubViews()
63 void Shell::Close() { in Close()
[all …]
/external/chromium_org/ash/
Dshell.cc182 Shell* Shell::instance_ = NULL;
184 bool Shell::initially_hide_cursor_ = false;
190 Shell* Shell::CreateInstance(const ShellInitParams& init_params) { in CreateInstance()
192 instance_ = new Shell(init_params.delegate); in CreateInstance()
198 Shell* Shell::GetInstance() { in GetInstance()
204 bool Shell::HasInstance() { in HasInstance()
209 void Shell::DeleteInstance() { in DeleteInstance()
215 RootWindowController* Shell::GetPrimaryRootWindowController() { in GetPrimaryRootWindowController()
221 Shell::RootWindowControllerList Shell::GetAllRootWindowControllers() { in GetAllRootWindowControllers()
223 return Shell::GetInstance()->display_controller()-> in GetAllRootWindowControllers()
[all …]
Dshell_unittest.cc48 return Shell::GetContainer(Shell::GetPrimaryRootWindow(), in GetDefaultContainer()
53 return Shell::GetContainer(Shell::GetPrimaryRootWindow(), in GetAlwaysOnTopContainer()
59 aura::Window* root_window = Shell::GetPrimaryRootWindow(); in ExpectAllContainers()
60 EXPECT_TRUE(Shell::GetContainer(root_window, in ExpectAllContainers()
63 Shell::GetContainer(root_window, kShellWindowId_DefaultContainer)); in ExpectAllContainers()
65 Shell::GetContainer(root_window, kShellWindowId_AlwaysOnTopContainer)); in ExpectAllContainers()
66 EXPECT_TRUE(Shell::GetContainer(root_window, kShellWindowId_PanelContainer)); in ExpectAllContainers()
67 EXPECT_TRUE(Shell::GetContainer(root_window, kShellWindowId_ShelfContainer)); in ExpectAllContainers()
69 Shell::GetContainer(root_window, kShellWindowId_SystemModalContainer)); in ExpectAllContainers()
70 EXPECT_TRUE(Shell::GetContainer( in ExpectAllContainers()
[all …]
/external/chromium_org/ash/wm/
Dapp_list_controller_unittest.cc58 Shell::GetInstance()->ShowAppList(NULL); in TEST_P()
59 EXPECT_TRUE(Shell::GetInstance()->GetAppListTargetVisibility()); in TEST_P()
64 EXPECT_FALSE(Shell::GetInstance()->GetAppListTargetVisibility()); in TEST_P()
70 Shell::GetInstance()->ShowAppList(NULL); in TEST_P()
71 EXPECT_TRUE(Shell::GetInstance()->GetAppListTargetVisibility()); in TEST_P()
73 aura::Window* applist_container = Shell::GetContainer( in TEST_P()
74 Shell::GetPrimaryRootWindow(), kShellWindowId_AppListContainer); in TEST_P()
79 EXPECT_TRUE(Shell::GetInstance()->GetAppListTargetVisibility()); in TEST_P()
84 Shell* shell = Shell::GetInstance(); in TEST_P()
107 Shell* shell = Shell::GetInstance(); in TEST_P()
[all …]
Dpower_button_controller.cc36 Shell::GetInstance()->display_configurator()->AddObserver(this); in PowerButtonController()
38 Shell::GetInstance()->PrependPreTargetHandler(this); in PowerButtonController()
43 Shell::GetInstance()->display_configurator()->RemoveObserver(this); in ~PowerButtonController()
45 Shell::GetInstance()->RemovePreTargetHandler(this); in ~PowerButtonController()
66 Shell::GetInstance()->maximize_mode_controller()-> in OnPowerButtonEvent()
68 Shell::GetInstance()->accelerator_controller()->PerformAction( in OnPowerButtonEvent()
74 Shell::GetInstance()->session_state_delegate(); in OnPowerButtonEvent()
96 if (Shell::GetInstance()->maximize_mode_controller()-> in OnPowerButtonEvent()
118 Shell::GetInstance()->session_state_delegate(); in OnLockButtonEvent()
Dwindow_cycle_controller.cc34 Shell::GetInstance()->AddPreTargetHandler(this); in WindowCycleEventFilter()
38 Shell::GetInstance()->RemovePreTargetHandler(this); in ~WindowCycleEventFilter()
45 Shell::GetInstance()->window_cycle_controller()->StopCycling(); in OnKeyEvent()
65 return !Shell::GetInstance()->session_state_delegate()->IsScreenLocked() && in CanCycle()
66 !Shell::GetInstance()->IsSystemModalWindowOpen(); in CanCycle()
80 window_cycle_list_.reset(new WindowCycleList(ash::Shell::GetInstance()-> in StartCycling()
84 Shell::GetInstance()->metrics()->RecordUserMetricsAction(UMA_WINDOW_CYCLE); in StartCycling()
Dwindow_cycle_controller_unittest.cc69 Shell::GetInstance()->window_cycle_controller(); in TEST_F()
88 Shell::GetInstance()->window_cycle_controller(); in TEST_F()
97 Shell::GetInstance()->RotateFocus(Shell::FORWARD); in TEST_F()
107 Shell::GetInstance()->window_cycle_controller(); in TEST_F()
170 Shell::GetInstance()->session_state_delegate()->LockScreen(); in TEST_F()
177 Shell::GetInstance()->session_state_delegate()->UnlockScreen(); in TEST_F()
186 ash::Shell::GetContainer( in TEST_F()
187 Shell::GetPrimaryRootWindow(), in TEST_F()
218 Shell::GetInstance()->window_cycle_controller(); in TEST_F()
241 Shell::GetInstance()->window_cycle_controller(); in TEST_F()
[all …]
/external/chromium_org/ash/display/
Ddisplay_controller_unittest.cc75 Shell::GetInstance()->display_controller()->AddObserver(this); in TestObserver()
76 Shell::GetScreen()->AddObserver(this); in TestObserver()
77 aura::client::GetFocusClient(Shell::GetPrimaryRootWindow())-> in TestObserver()
79 aura::client::GetActivationClient(Shell::GetPrimaryRootWindow())-> in TestObserver()
84 Shell::GetInstance()->display_controller()->RemoveObserver(this); in ~TestObserver()
85 Shell::GetScreen()->RemoveObserver(this); in ~TestObserver()
86 aura::client::GetFocusClient(Shell::GetPrimaryRootWindow())-> in ~TestObserver()
88 aura::client::GetActivationClient(Shell::GetPrimaryRootWindow())-> in ~TestObserver()
178 return Shell::GetScreen()->GetDisplayNearestWindow( in GetPrimaryDisplay()
179 Shell::GetAllRootWindows()[0]); in GetPrimaryDisplay()
[all …]
Droot_window_transformers_unittest.cc110 return Shell::GetInstance()->display_manager()->GetDisplayInfo(id).rotation(); in GetStoredRotation()
114 return Shell::GetInstance()->display_manager()->GetDisplayInfo(id). in GetStoredUIScale()
136 Shell::GetInstance()->magnification_controller(); in TEST_F()
137 DisplayManager* display_manager = Shell::GetInstance()->display_manager(); in TEST_F()
140 Shell::GetInstance()->AddPreTargetHandler(&event_handler); in TEST_F()
143 gfx::Display display1 = Shell::GetScreen()->GetPrimaryDisplay(); in TEST_F()
146 aura::Window::Windows root_windows = Shell::GetAllRootWindows(); in TEST_F()
223 Shell::GetInstance()->RemovePreTargetHandler(&event_handler); in TEST_F()
231 Shell::GetInstance()->AddPreTargetHandler(&event_handler); in TEST_F()
235 gfx::Display display1 = Shell::GetScreen()->GetPrimaryDisplay(); in TEST_F()
[all …]
/external/chromium_org/ash/system/chromeos/rotation/
Dtray_rotation_lock_unittest.cc107 Shell::GetInstance()->maximize_mode_controller()-> in TEST_F()
111 Shell::GetInstance()->maximize_mode_controller()-> in TEST_F()
119 Shell::GetInstance()->maximize_mode_controller()-> in TEST_F()
121 Shell::GetInstance()-> maximize_mode_controller()->SetRotationLocked(true); in TEST_F()
124 Shell::GetInstance()->maximize_mode_controller()-> in TEST_F()
133 Shell::GetInstance()->maximize_mode_controller()-> in TEST_F()
135 Shell::GetInstance()->maximize_mode_controller()->SetRotationLocked(true); in TEST_F()
137 Shell::GetInstance()->maximize_mode_controller()-> in TEST_F()
152 Shell::GetInstance()->maximize_mode_controller()-> in TEST_F()
155 Shell::GetInstance()->maximize_mode_controller()-> in TEST_F()
[all …]
Dtray_rotation_lock.cc47 SetVisible(Shell::GetInstance()->maximize_mode_controller()-> in RotationLockDefaultView()
49 Shell::GetInstance()->AddShellObserver(this); in RotationLockDefaultView()
53 Shell::GetInstance()->RemoveShellObserver(this); in ~RotationLockDefaultView()
57 MaximizeModeController* maximize_mode_controller = Shell::GetInstance()-> in PerformAction()
77 if (Shell::GetInstance()->maximize_mode_controller()->rotation_locked()) { in UpdateImage()
98 gfx::Display parent_display = Shell::GetScreen()-> in TrayRotationLock()
104 Shell::GetInstance()->AddShellObserver(this); in TrayRotationLock()
109 Shell::GetInstance()->RemoveShellObserver(this); in ~TrayRotationLock()
124 Shell::GetInstance()->maximize_mode_controller()->rotation_locked()); in OnMaximizeModeStarted()
125 Shell::GetInstance()->maximize_mode_controller()->AddObserver(this); in OnMaximizeModeStarted()
[all …]
/external/chromium_org/ash/system/overview/
Doverview_button_tray_unittest.cc64 Shell::GetInstance()->maximize_mode_controller()-> in TEST_F()
68 Shell::GetInstance()->maximize_mode_controller()-> in TEST_F()
75 ASSERT_FALSE(Shell::GetInstance()->window_selector_controller()-> in TEST_F()
84 EXPECT_TRUE(Shell::GetInstance()->window_selector_controller()-> in TEST_F()
98 Shell::GetInstance()->maximize_mode_controller()-> in TEST_F()
102 Shell::GetInstance()->maximize_mode_controller()-> in TEST_F()
112 Shell::GetInstance()->maximize_mode_controller()-> in TEST_F()
116 Shell::GetInstance()->maximize_mode_controller()-> in TEST_F()
123 Shell::GetInstance()->maximize_mode_controller()-> in TEST_F()
126 Shell::GetInstance()->UpdateAfterLoginStatusChange(user::LOGGED_IN_NONE); in TEST_F()
[all …]
/external/chromium_org/ash/first_run/
Dfirst_run_helper_impl.cc25 params.bounds = Shell::GetScreen()->GetPrimaryDisplay().bounds(); in CreateFirstRunWindow()
28 params.parent = Shell::GetContainer(Shell::GetPrimaryRootWindow(), in CreateFirstRunWindow()
39 Shell::GetInstance()->overlay_filter()->Activate(this); in FirstRunHelperImpl()
43 Shell::GetInstance()->overlay_filter()->Deactivate(this); in ~FirstRunHelperImpl()
54 Shell::GetInstance()->ShowAppList(NULL); in OpenAppList()
58 Shell::GetInstance()->DismissAppList(); in CloseAppList()
73 app_list::AppListView* view = Shell::GetInstance()->GetAppListView(); in GetAppListBounds()
90 SystemTray* tray = Shell::GetInstance()->GetPrimarySystemTray(); in OpenTrayBubble()
95 SystemTray* tray = Shell::GetInstance()->GetPrimarySystemTray(); in CloseTrayBubble()
101 SystemTray* tray = Shell::GetInstance()->GetPrimarySystemTray(); in IsTrayBubbleOpened()
[all …]
/external/chromium_org/ash/accelerators/
Daccelerator_controller.cc102 if (!Shell::GetInstance()->accessibility_delegate()-> in HandleAccessibleFocusCycle()
130 Shell::GetInstance()->window_cycle_controller()->HandleCycleWindow( in HandleCycleBackwardMRU()
139 Shell::GetInstance()->window_cycle_controller()->HandleCycleWindow( in HandleCycleForwardMRU()
146 Shell::GetInstance()->window_selector_controller()->ToggleOverview(); in ToggleOverview()
151 Shell* shell = Shell::GetInstance(); in HandleFocusShelf()
171 if (ash::Shell::GetInstance()->magnification_controller()->IsEnabled()) { in HandleMagnifyScreen()
174 ash::Shell::GetInstance()->magnification_controller()->GetScale(); in HandleMagnifyScreen()
181 ash::Shell::GetInstance()->magnification_controller()-> in HandleMagnifyScreen()
183 } else if (ash::Shell::GetInstance()-> in HandleMagnifyScreen()
186 ash::Shell::GetInstance()->partial_magnification_controller()-> in HandleMagnifyScreen()
[all …]
/external/chromium_org/content/public/test/
Dcontent_browser_test_utils.h30 class Shell; variable
47 void NavigateToURL(Shell* window, const GURL& url);
48 void LoadDataWithBaseURL(Shell* window,
55 void NavigateToURLBlockUntilNavigationsComplete(Shell* window,
60 void ReloadBlockUntilNavigationsComplete(Shell* window,
64 void WaitForAppModalDialog(Shell* window);
75 Shell* GetShell();
78 void ShellCreated(Shell* shell);
80 Shell* shell_;
/external/chromium_org/ash/system/web_notification/
Dash_popup_alignment_delegate_unittest.cc28 Shell::GetScreen(), Shell::GetScreen()->GetPrimaryDisplay()); in SetUp()
51 Shell::GetScreen()->GetPrimaryDisplay().work_area(); in GetPositionInDisplay()
82 Shell::GetInstance()->SetShelfAlignment( in TEST_F()
84 Shell::GetPrimaryRootWindow()); in TEST_F()
91 Shell::GetInstance()->SetShelfAlignment( in TEST_F()
93 Shell::GetPrimaryRootWindow()); in TEST_F()
100 Shell::GetInstance()->SetShelfAlignment( in TEST_F()
102 Shell::GetPrimaryRootWindow()); in TEST_F()
113 Shell::GetInstance()->SetShelfAlignment( in TEST_F()
115 Shell::GetPrimaryRootWindow()); in TEST_F()
[all …]
/external/chromium_org/chrome/browser/chromeos/power/
Dpower_button_observer.cc27 if (!ash::Shell::GetInstance()->system_tray_delegate()) in GetCurrentLoginStatus()
29 return ash::Shell::GetInstance()->system_tray_delegate()-> in GetCurrentLoginStatus()
36 ash::Shell::GetInstance()->lock_state_controller()-> in PowerButtonObserver()
57 ash::Shell::GetInstance()->OnLoginStateChanged(GetCurrentLoginStatus()); in PowerButtonObserver()
61 ash::Shell::GetInstance()->OnLockStateChanged(locked); in PowerButtonObserver()
74 ash::Shell::GetInstance()->OnLoginStateChanged(GetCurrentLoginStatus()); in Observe()
78 ash::Shell::GetInstance()->OnAppTerminating(); in Observe()
82 ash::Shell::GetInstance()->OnLockStateChanged(locked); in Observe()
92 ash::Shell::GetInstance()->power_button_controller()-> in PowerButtonEventReceived()
/external/chromium_org/ash/touch/
Dtouch_observer_hud.cc25 Shell::GetInstance()->display_manager()->GetDisplayForId(display_id_); in TouchObserverHUD()
40 Shell::GetContainer(root_window_, kShellWindowId_OverlayContainer); in TouchObserverHUD()
49 Shell::GetScreen()->AddObserver(this); in TouchObserverHUD()
51 Shell::GetInstance()->display_configurator()->AddObserver(this); in TouchObserverHUD()
54 Shell::GetInstance()->display_controller()->AddObserver(this); in TouchObserverHUD()
59 Shell::GetInstance()->display_controller()->RemoveObserver(this); in ~TouchObserverHUD()
62 Shell::GetInstance()->display_configurator()->RemoveObserver(this); in ~TouchObserverHUD()
64 Shell::GetScreen()->RemoveObserver(this); in ~TouchObserverHUD()
129 Shell::GetContainer(root_window_, in OnDisplayConfigurationChanging()
139 root_window_ = Shell::GetInstance()->display_controller()-> in OnDisplayConfigurationChanged()
[all …]
/external/chromium_org/content/browser/
Ddatabase_browsertest.cc25 void RunScriptAndCheckResult(Shell* shell, in RunScriptAndCheckResult()
36 void Navigate(Shell* shell) { in Navigate()
40 void CreateTable(Shell* shell) { in CreateTable()
44 void InsertRecord(Shell* shell, const std::string& data) { in InsertRecord()
48 void UpdateRecord(Shell* shell, int index, const std::string& data) { in UpdateRecord()
55 void DeleteRecord(Shell* shell, int index) { in DeleteRecord()
60 void CompareRecords(Shell* shell, const std::string& expected) { in CompareRecords()
64 bool HasTable(Shell* shell) { in HasTable()
183 Shell* otr = CreateOffTheRecordBrowser(); in IN_PROC_BROWSER_TEST_F()
194 Shell* otr = CreateOffTheRecordBrowser(); in IN_PROC_BROWSER_TEST_F()
[all …]
/external/javasqlite/src/main/java/SQLite/
DShell.java18 public class Shell implements Callback { class
40 public Shell(PrintWriter pw, PrintWriter err) { in Shell() method in Shell
45 public Shell(PrintStream ps, PrintStream errs) { in Shell() method in Shell
51 Shell s = new Shell(this.pw, this.err); in clone()
160 tableName = Shell.sql_quote_dbl(str); in set_table_name()
162 tableName = Shell.sql_quote(str); in set_table_name()
178 case Shell.MODE_Line: in newrow()
190 case Shell.MODE_Column: in newrow()
220 case Shell.MODE_Semi: in newrow()
221 case Shell.MODE_List: in newrow()
[all …]
/external/chromium_org/ash/system/chromeos/brightness/
Dtray_brightness_unittest.cc49 Shell::GetInstance()->maximize_mode_controller()-> in TEST_F()
53 Shell::GetInstance()->maximize_mode_controller()-> in TEST_F()
61 Shell::GetInstance()->maximize_mode_controller()-> in TEST_F()
64 Shell::GetInstance()->maximize_mode_controller()-> in TEST_F()
80 Shell::GetInstance()->maximize_mode_controller()-> in TEST_F()
84 Shell::GetInstance()->maximize_mode_controller()-> in TEST_F()
92 Shell::GetInstance()->maximize_mode_controller()-> in TEST_F()
95 Shell::GetInstance()->maximize_mode_controller()-> in TEST_F()
/external/chromium_org/ash/shell/content_client/
Dshell_browser_main_parts.cc59 return ash::Shell::GetInstance()->CreateDefaultNonClientFrameView(widget); in CreateDefaultNonClientFrameView()
71 params->context = Shell::GetPrimaryRootWindow(); in OnBeforeWidgetInit()
128 ash::Shell::CreateInstance(init_params); in PreMainMessageLoopRun()
130 ash::Shell::GetInstance()->CreateShelf(); in PreMainMessageLoopRun()
131 ash::Shell::GetInstance()->UpdateAfterLoginStatusChange( in PreMainMessageLoopRun()
135 gfx::Screen* screen = Shell::GetInstance()->GetScreen(); in PreMainMessageLoopRun()
141 ash::Shell::GetPrimaryRootWindow()->GetHost()->Show(); in PreMainMessageLoopRun()
145 gfx::Screen* screen = Shell::GetInstance()->GetScreen(); in PostMainMessageLoopRun()
151 ash::Shell::DeleteInstance(); in PostMainMessageLoopRun()
/external/chromium_org/ash/shell/
Dwindow_watcher_unittest.cc25 Shell::DeleteInstance(); in TEST_F()
31 Shell::CreateInstance(init_params); in TEST_F()
32 Shell::GetPrimaryRootWindow()->GetHost()->Show(); in TEST_F()
33 Shell::GetInstance()->CreateShelf(); in TEST_F()
34 Shell::GetInstance()->UpdateAfterLoginStatusChange( in TEST_F()
40 Shell::GetPrimaryRootWindow()->Hide(); in TEST_F()

12345678910>>...26