HomeSort by relevance Sort by last modified time
    Searched refs:Shell (Results 1 - 25 of 537) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/content/test/
content_browser_test.h 16 class Shell;
33 Shell* CreateBrowser();
36 Shell* CreateOffTheRecordBrowser();
39 Shell* shell() const { return shell_; } function in class:content::ContentBrowserTest
44 Shell* shell_;
content_browser_test_utils.h 27 class Shell;
43 void NavigateToURL(Shell* window, const GURL& url);
47 void NavigateToURLBlockUntilNavigationsComplete(Shell* window,
52 void WaitForAppModalDialog(Shell* window);
54 // Used to wait for a new Shell window to be created. Instantiate this object
63 Shell* GetShell();
66 void ShellCreated(Shell* shell);
68 Shell* shell_;
accessibility_browser_test_utils.h 17 class Shell;
27 Shell* shell,
50 Shell* shell_;
  /external/chromium_org/v8/src/
d8-windows.cc 38 void Shell::AddOSMethods(Handle<ObjectTemplate> os_templ) {
  /external/v8/src/
d8-windows.cc 38 void Shell::AddOSMethods(Handle<ObjectTemplate> os_templ) {
  /external/chromium_org/ash/shell/
window_watcher_unittest.cc 5 #include "ash/shell/window_watcher.h"
7 #include "ash/shell.h"
9 #include "ash/shell/shell_delegate_impl.h"
18 // This test verifies that shell can be torn down without causing failures
21 scoped_ptr<ash::shell::WindowWatcher> window_watcher;
22 Shell::DeleteInstance();
24 shell::ShellDelegateImpl* delegate = new ash::shell::ShellDelegateImpl;
25 Shell::CreateInstance(delegate);
26 Shell::GetPrimaryRootWindow()->ShowRootWindow()
    [all...]
  /external/chromium_org/ash/
scoped_target_root_window.cc 6 #include "ash/shell.h"
13 Shell::GetInstance()->scoped_target_root_window_ = root_window;
17 Shell::GetInstance()->scoped_target_root_window_ = NULL;
cancel_mode.cc 8 #include "ash/shell.h"
14 Shell::RootWindowControllerList controllers(
15 Shell::GetAllRootWindowControllers());
16 for (Shell::RootWindowControllerList::const_iterator i = controllers.begin();
debug.cc 7 #include "ash/shell.h"
16 Shell::RootWindowList root_windows =
17 Shell::GetInstance()->GetAllRootWindows();
19 for (Shell::RootWindowList::iterator it = root_windows.begin();
31 Shell::RootWindowList root_windows =
32 Shell::GetInstance()->GetAllRootWindows();
34 for (Shell::RootWindowList::iterator it = root_windows.begin();
46 Shell::RootWindowList root_windows =
47 Shell::GetInstance()->GetAllRootWindows();
49 for (Shell::RootWindowList::iterator it = root_windows.begin()
    [all...]
  /external/chromium_org/chrome/browser/chromeos/display/
display_configuration_observer.cc 8 #include "ash/shell.h"
14 ash::Shell::GetInstance()->display_controller()->AddObserver(this);
18 ash::Shell::GetInstance()->display_controller()->RemoveObserver(this);
  /external/chromium_org/ash/test/
mirror_window_test_api.cc 9 #include "ash/shell.h"
17 return Shell::GetInstance()->display_controller()->
22 return Shell::GetInstance()->display_controller()->
27 return Shell::GetInstance()->display_controller()->
32 return Shell::GetInstance()->display_controller()->
38 return Shell::GetInstance()->display_controller()->
shell_test_api.h 18 class Shell;
31 // Accesses private data from a Shell for testing.
34 explicit ShellTestApi(Shell* shell);
48 Shell* shell_; // not owned
  /external/chromium_org/chrome/browser/ui/ash/
ash_util.cc 7 #include "ash/shell.h"
20 if (!ash::Shell::HasInstance())
23 ash::Shell::RootWindowList root_windows =
24 ash::Shell::GetInstance()->GetAllRootWindows();
26 for (ash::Shell::RootWindowList::const_iterator it = root_windows.begin();
43 if (!ash::Shell::HasInstance())
ash_init.cc 12 #include "ash/shell.h"
57 ash::Shell::set_initially_hide_cursor(true);
60 // Shell takes ownership of ChromeShellDelegate.
61 ash::Shell* shell = ash::Shell::CreateInstance(new ChromeShellDelegate); local
62 shell->event_rewriter_filter()->SetEventRewriterDelegate(
64 shell->accelerator_controller()->SetScreenshotDelegate(
67 shell->accelerator_controller()->SetBrightnessControlDelegate(
70 shell->accelerator_controller()->SetImeControlDelegate
    [all...]
  /external/chromium_org/content/shell/
shell_android.cc 5 #include "content/shell/shell.h"
15 #include "content/shell/android/shell_manager.h"
23 void Shell::PlatformInitialize(const gfx::Size& default_window_size) {
29 void Shell::PlatformCleanUp() {
32 void Shell::PlatformEnableUIControl(UIControl control, bool is_enabled) {
35 void Shell::PlatformSetAddressBarURL(const GURL& url) {
41 void Shell::PlatformSetIsLoading(bool loading) {
46 void Shell::PlatformCreateWindow(int width, int height) {
50 void Shell::PlatformSetContents()
    [all...]
shell.cc 5 #include "content/shell/shell.h"
26 #include "content/shell/common/shell_messages.h"
27 #include "content/shell/common/shell_switches.h"
28 #include "content/shell/notify_done_forwarder.h"
29 #include "content/shell/shell_browser_main_parts.h"
30 #include "content/shell/shell_content_browser_client.h"
31 #include "content/shell/shell_devtools_frontend.h"
32 #include "content/shell/shell_javascript_dialog_manager.h"
33 #include "content/shell/webkit_test_controller.h
102 Shell* shell = new Shell(web_contents); local
164 Shell* shell = CreateShell(web_contents, create_params.initial_size); local
    [all...]
  /external/chromium_org/chrome/browser/
idle_chromeos.cc 8 #include "ash/shell.h"
14 ash::Shell::GetInstance()->user_activity_detector()->last_activity_time();
19 return ash::Shell::GetInstance()->session_state_delegate()->IsScreenLocked();
  /external/chromium_org/content/shell/android/
shell_manager.h 13 class Shell;
21 // Creates an Android specific shell view, which is our version of a shell
23 // render a shell window. Returns the java object representing the shell view.
25 jobject CreateShellView(Shell* shell);
27 // Closes a previously created shell view.
shell_jni_registrar.cc 5 #include "content/shell/android/shell_jni_registrar.h"
9 #include "content/shell/android/shell_manager.h"
10 #include "content/shell/shell.h"
15 { "Shell", content::Shell::Register },
  /external/chromium_org/ash/wm/
event_client_impl.cc 8 #include "ash/shell.h"
26 if (Shell::GetInstance()->session_state_delegate()->IsUserSessionBlocked()) {
27 const aura::Window* lock_screen_containers = Shell::GetContainer(
30 const aura::Window* lock_background_containers = Shell::GetContainer(
33 const aura::Window* lock_screen_related_containers = Shell::GetContainer(
47 return Shell::GetInstance();
coordinate_conversion.cc 8 #include "ash/shell.h"
21 Shell::GetScreen()->GetDisplayNearestPoint(point);
25 return Shell::GetInstance()->display_controller()->
30 const gfx::Display& display = Shell::GetScreen()->GetDisplayMatching(rect);
31 return Shell::GetInstance()->display_controller()->
  /external/chromium_org/chrome/browser/chromeos/power/
power_button_observer.cc 7 #include "ash/shell.h"
23 if (!ash::Shell::GetInstance()->system_tray_delegate())
25 return ash::Shell::GetInstance()->system_tray_delegate()->
32 ash::Shell::GetInstance()->lock_state_controller()->
52 ash::Shell::GetInstance()->OnLoginStateChanged(GetCurrentLoginStatus());
56 ash::Shell::GetInstance()->OnLockStateChanged(locked);
69 ash::Shell::GetInstance()->OnLoginStateChanged(GetCurrentLoginStatus());
73 ash::Shell::GetInstance()->OnAppTerminating();
77 ash::Shell::GetInstance()->OnLockStateChanged(locked);
87 ash::Shell::GetInstance()->power_button_controller()-
    [all...]
  /external/chromium_org/ash/high_contrast/
high_contrast_controller.cc 7 #include "ash/shell.h"
21 Shell::RootWindowList root_window_list = Shell::GetAllRootWindows();
22 for (Shell::RootWindowList::iterator it = root_window_list.begin();
  /external/chromium_org/ash/system/chromeos/enterprise/
tray_enterprise.cc 19 Shell::GetInstance()->system_tray_notifier()->
24 Shell::GetInstance()->system_tray_notifier()->
29 base::string16 message = Shell::GetInstance()->system_tray_delegate()->
55 Shell::GetInstance()->system_tray_delegate()->ShowEnterpriseInfo();
  /external/chromium_org/ash/shell/content_client/
shell_browser_main_parts.cc 5 #include "ash/shell/content_client/shell_browser_main_parts.h"
9 #include "ash/shell.h"
10 #include "ash/shell/shell_delegate_impl.h"
11 #include "ash/shell/window_watcher.h"
21 #include "content/shell/shell_browser_context.h"
22 #include "content/shell/shell_net_log.h"
46 namespace shell { namespace in namespace:ash
59 return ash::Shell::GetInstance()->CreateDefaultNonClientFrameView(widget);
72 params->context = Shell::GetPrimaryRootWindow();
113 delegate_ = new ash::shell::ShellDelegateImpl
    [all...]

Completed in 1668 milliseconds

1 2 3 4 5 6 7 8 91011>>