HomeSort by relevance Sort by last modified time
    Searched refs:window (Results 126 - 150 of 2361) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/chrome/browser/sync/sessions/
sessions_util.h 19 // Decides whether |window| is interesting for tab syncing
21 bool ShouldSyncWindow(const SyncedWindowDelegate* window);
  /external/chromium_org/chrome/browser/ui/ash/multi_user/
multi_user_window_manager.h 19 class Window;
28 // determining the window ownership from browser and application windows and
31 // only be presented on one desktop. If a window should get moved to another
37 // - There is no need to "unregister" a window from an owner. The class will
38 // clean automatically all references of that window upon destruction.
43 // Observer to notify of any window owner changes.
46 // Invoked when the new window is created and the manager start to track its
48 virtual void OnOwnerEntryAdded(aura::Window* window) {}
49 // Invoked when the owner of the window tracked by the manager is changed
    [all...]
  /external/chromium_org/chrome/browser/ui/ash/
shelf_browsertest.cc 21 browser()->window()->GetNativeWindow())->GetShelfLayoutManager();
25 const gfx::Rect old_bounds = browser()->window()->GetBounds();
31 browser()->window()->SetBounds(new_bounds);
35 browser()->window()->GetStatusBubble()->SetStatus(
  /external/chromium_org/chrome/browser/ui/views/
auto_keep_alive.h 13 explicit AutoKeepAlive(gfx::NativeWindow window);
  /external/chromium_org/chrome/browser/ui/views/frame/
taskbar_decorator.h 17 // associated with top level, visible |window|. Currently only implemented
19 void DrawTaskbarDecoration(gfx::NativeWindow window, const gfx::Image* image);
browser_view_focus_uitest.cc 39 gfx::NativeWindow window = browser()->window()->GetNativeWindow(); local
43 // Now hide the window, show it again, the focus should not have changed.
44 ui_test_utils::HideNativeWindow(window);
45 ASSERT_TRUE(ui_test_utils::ShowAndFocusNativeWindow(window));
50 // Hide the window, show it again, the focus should not have changed.
51 ui_test_utils::HideNativeWindow(window);
52 ASSERT_TRUE(ui_test_utils::ShowAndFocusNativeWindow(window));
56 // of Activate() is not well defined and can vary by window manager.
58 // Open a new browser window
    [all...]
  /external/chromium_org/chrome/test/base/
interactive_test_utils_win.cc 23 void HideNativeWindow(gfx::NativeWindow window) {
24 if (chrome::GetHostDesktopTypeForNativeWindow(window) ==
26 HideNativeWindowAura(window);
29 HWND hwnd = window->GetHost()->GetAcceleratedWidget();
33 bool ShowAndFocusNativeWindow(gfx::NativeWindow window) {
34 if (chrome::GetHostDesktopTypeForNativeWindow(window) ==
36 ShowAndFocusNativeWindowAura(window);
37 window->Show();
38 // Always make sure the window hosting ash is visible and focused.
39 HWND hwnd = window->GetHost()->GetAcceleratedWidget()
    [all...]
  /external/chromium_org/content/public/test/
content_browser_test_utils.cc 36 void NavigateToURLBlockUntilNavigationsComplete(Shell* window,
39 WaitForLoadStop(window->web_contents());
40 TestNavigationObserver same_tab_observer(window->web_contents(),
43 window->LoadURL(url);
47 void ReloadBlockUntilNavigationsComplete(Shell* window,
49 WaitForLoadStop(window->web_contents());
50 TestNavigationObserver same_tab_observer(window->web_contents(),
53 window->Reload();
57 void LoadDataWithBaseURL(Shell* window, const GURL& url,
59 WaitForLoadStop(window->web_contents())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/extensions/
ExtensionRegistryStub.js 31 if (!window.InspectorExtensionRegistry) {
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
DOMWindowIndexedDatabase.cpp 36 DOMWindowIndexedDatabase::DOMWindowIndexedDatabase(LocalDOMWindow& window)
37 : DOMWindowProperty(window.frame())
38 , m_window(window)
56 DOMWindowIndexedDatabase& DOMWindowIndexedDatabase::from(LocalDOMWindow& window)
58 DOMWindowIndexedDatabase* supplement = static_cast<DOMWindowIndexedDatabase*>(WillBeHeapSupplement<LocalDOMWindow>::from(window, supplementName()));
60 supplement = new DOMWindowIndexedDatabase(window);
61 provideTo(window, supplementName(), adoptPtrWillBeNoop(supplement));
78 IDBFactory* DOMWindowIndexedDatabase::indexedDB(LocalDOMWindow& window)
80 return from(window).indexedDB();
  /external/chromium_org/third_party/skia/gm/rebaseline_server/static/
utils.js 4 $(window).scroll( function() {
5 var windowPos = $(window).scrollTop();
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/mac/
window_list_utils.cc 27 // Check windows to make sure they have an id, title, and use window layer
31 CFDictionaryRef window = reinterpret_cast<CFDictionaryRef>( local
34 CFDictionaryGetValue(window, kCGWindowName));
36 CFDictionaryGetValue(window, kCGWindowNumber));
38 CFDictionaryGetValue(window, kCGWindowLayer));
48 WindowCapturer::Window window; local
49 window.id = id;
50 if (!rtc::ToUtf8(window_title, &(window.title)) ||
51 window.title.empty())
    [all...]
  /external/chromium_org/tools/gyp/test/ios/extension/ExtensionContainer/
AppDelegate.h 9 @property (strong, nonatomic) UIWindow *window; variable
  /external/chromium_org/ui/aura/client/
focus_client.cc 10 DECLARE_EXPORTED_WINDOW_PROPERTY_TYPE(AURA_EXPORT, aura::Window*)
18 void SetFocusClient(Window* root_window, FocusClient* client) {
23 FocusClient* GetFocusClient(Window* window) {
24 return GetFocusClient(static_cast<const Window*>(window));
27 FocusClient* GetFocusClient(const Window* window) {
28 const Window* root_window = window->GetRootWindow()
    [all...]
  /external/chromium_org/ui/aura/test/
test_focus_client.cc 8 #include "ui/aura/window.h"
33 void TestFocusClient::FocusWindow(Window* window) {
34 if (window && !window->CanFocus())
38 aura::Window* old_focused_window = focused_window_;
39 focused_window_ = window;
52 void TestFocusClient::ResetFocusWithinActiveWindow(Window* window) {
53 if (!window->Contains(focused_window_)
    [all...]
  /external/chromium_org/ui/views/widget/desktop_aura/
desktop_screen_position_client.h 18 explicit DesktopScreenPositionClient(aura::Window* root_window);
22 virtual void ConvertPointToScreen(const aura::Window* window,
24 virtual void ConvertPointFromScreen(const aura::Window* window,
26 virtual void ConvertHostPointToScreen(aura::Window* window,
28 virtual void SetBounds(aura::Window* window,
33 aura::Window* root_window_
    [all...]
  /external/chromium_org/ui/wm/core/
visibility_controller.h 24 // TODO(beng): potentially replace by an actual window animator class in
26 virtual bool CallAnimateOnChildWindowVisibilityChanged(aura::Window* window,
31 virtual void UpdateLayerVisibility(aura::Window* window,
53 explicit SuspendChildWindowVisibilityAnimations(aura::Window* window);
59 // The window to manage.
60 aura::Window* window_;
68 // Tells |window| to animate visibility changes to its children
    [all...]
transient_window_manager.cc 12 #include "ui/aura/window.h"
18 using aura::Window;
28 TransientWindowManager* TransientWindowManager::Get(Window* window) {
29 TransientWindowManager* manager = window->GetProperty(kPropertyKey);
31 manager = new TransientWindowManager(window);
32 window->SetProperty(kPropertyKey, manager);
39 const Window* window) {
40 return window->GetProperty(kPropertyKey)
    [all...]
  /external/chromium_org/ui/wm/public/
activation_client.cc 7 #include "ui/aura/window.h"
10 DECLARE_EXPORTED_WINDOW_PROPERTY_TYPE(AURA_EXPORT, aura::Window*)
20 void SetActivationClient(Window* root_window, ActivationClient* client) {
24 ActivationClient* GetActivationClient(Window* root_window) {
29 void SetHideOnDeactivate(Window* window, bool hide_on_deactivate) {
30 window->SetProperty(kHideOnDeactivate, hide_on_deactivate);
33 bool GetHideOnDeactivate(Window* window) {
34 return window->GetProperty(kHideOnDeactivate)
    [all...]
scoped_tooltip_disabler.cc 7 #include "ui/aura/window.h"
13 ScopedTooltipDisabler::ScopedTooltipDisabler(aura::Window* window)
14 : root_(window ? window->GetRootWindow() : NULL) {
37 void ScopedTooltipDisabler::OnWindowDestroying(aura::Window* window) {
tooltip_client.h 12 class Window;
19 // Informs the shell tooltip manager of change in tooltip for window |target|.
20 virtual void UpdateTooltip(Window* target) = 0;
22 // Sets the time after which the tooltip is hidden for Window |target|. If
24 virtual void SetTooltipShownTimeout(Window* target, int timeout_in_ms) = 0;
35 AURA_EXPORT void SetTooltipClient(Window* root_window,
37 AURA_EXPORT TooltipClient* GetTooltipClient(Window* root_window);
42 AURA_EXPORT void SetTooltipText(Window* window,
44 AURA_EXPORT void SetTooltipId(Window* window, void* id)
    [all...]
  /external/chromium_org/ash/wm/overview/
scoped_transform_overview_window.cc 15 #include "ui/aura/window.h"
26 // The animation settings used for window selector animations.
30 WindowSelectorAnimationSettings(aura::Window* window) :
31 ui::ScopedLayerAnimationSettings(window->layer()->GetAnimator()) {
43 void SetTransformOnWindow(aura::Window* window,
47 WindowSelectorAnimationSettings animation_settings(window);
48 window->SetTransform(transform);
50 window->SetTransform(transform)
133 aura::Window* window = window_; local
144 aura::Window* window = window_; local
206 aura::Window* window = window_; local
246 aura::Window* window = window_; local
    [all...]
  /external/chromium_org/ash/wm/workspace/
workspace_layout_manager_unittest.cc 28 #include "ui/aura/window.h"
78 aura::Window* root_window) OVERRIDE {
102 // Verifies that a window containing a restore coordinate will be restored to
106 scoped_ptr<aura::Window> window(
109 window->SetBounds(bounds);
111 wm::WindowState* window_state = wm::GetWindowState(window.get());
113 // This will not be used for un-minimizing window.
118 EXPECT_EQ("10,15 25x35", window.get()->bounds().ToString());
124 window->SetBoundsInScreen(gfx::Rect(600, 0, 100, 100)
801 aura::Window* window = CreateTestWindowInShellWithBounds(bounds); local
    [all...]
  /external/chromium_org/ash/wm/
window_util.h 13 class Window;
27 // We force at least this many DIPs for any window on the screen.
32 // Utility functions for window activation.
33 ASH_EXPORT void ActivateWindow(aura::Window* window);
34 ASH_EXPORT void DeactivateWindow(aura::Window* window);
35 ASH_EXPORT bool IsActiveWindow(aura::Window* window);
36 ASH_EXPORT aura::Window* GetActiveWindow()
    [all...]
  /external/chromium_org/ash/display/
screen_position_controller.cc 28 // Return true if the window or its ancestor has |kStayInSameRootWindowkey|
30 bool ShouldStayInSameRootWindow(const aura::Window* window) {
31 return window && (window->GetProperty(kStayInSameRootWindowKey) ||
32 ShouldStayInSameRootWindow(window->parent()));
38 aura::Window* window) {
39 aura::Window* dst_root = Shell::GetInstance()->display_controller()->
41 aura::Window::Windows transient_children
    [all...]

Completed in 560 milliseconds

1 2 3 4 56 7 8 91011>>