Searched refs:window (Results 151 - 175 of 2479) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/resources/gaia_auth/
H A Dsuccess.js11 window.parent.postMessage(msg,
/external/chromium_org/chrome/browser/resources/local_ntp/
H A Dmost_visited_title.js10 window.addEventListener('DOMContentLoaded', function() {
13 fillMostVisited(window.location, function(params, data) {
/external/chromium_org/chrome/browser/ui/ash/
H A Dshelf_browsertest.cc21 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/common/extensions/docs/examples/api/downloads/download_manager/
H A Dicons.js5 window.onload = function() {
/external/chromium_org/chrome/common/extensions/docs/examples/api/infobars/sandwichbar/
H A Dinfobar.js6 var count = window.location.hash.substring(1);
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/email_this_page/
H A Dcontent_script.js7 "selection": window.getSelection().toString()
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dapp_view_deny.js18 window.console.error(errorMessage);
21 window.AppView =
33 window.addEventListener('readystatechange', function listener(event) {
38 window.removeEventListener(event.type, listener, useCapture);
/external/chromium_org/chrome/test/base/
H A Dinteractive_test_utils_win.cc23 void HideNativeWindow(gfx::NativeWindow window) { argument
24 if (chrome::GetHostDesktopTypeForNativeWindow(window) ==
26 HideNativeWindowAura(window);
29 HWND hwnd = window->GetHost()->GetAcceleratedWidget();
33 bool ShowAndFocusNativeWindow(gfx::NativeWindow window) { argument
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
[all...]
/external/chromium_org/content/public/test/
H A Dcontent_browser_test_utils.cc36 void NavigateToURLBlockUntilNavigationsComplete(Shell* window, argument
39 WaitForLoadStop(window->web_contents());
40 TestNavigationObserver same_tab_observer(window->web_contents(),
43 window->LoadURL(url);
47 void ReloadBlockUntilNavigationsComplete(Shell* window, argument
49 WaitForLoadStop(window->web_contents());
50 TestNavigationObserver same_tab_observer(window->web_contents(),
53 window->Reload();
57 void LoadDataWithBaseURL(Shell* window, const GURL& url, argument
59 WaitForLoadStop(window
66 NavigateToURL(Shell* window, const GURL& url) argument
70 WaitForAppModalDialog(Shell* window) argument
[all...]
/external/chromium_org/content/test/data/indexeddb/
H A Dbug_84933.js10 window.close();
/external/chromium_org/extensions/renderer/resources/
H A Dweb_view_deny.js17 window.console.error(errorMessage);
20 window.WebView =
32 window.addEventListener('readystatechange', function listener(event) {
37 window.removeEventListener(event.type, listener, useCapture);
/external/chromium_org/remoting/webapp/
H A Dcs_oauth2_trampoline.js14 if (window.location.pathname == officialPath ||
15 window.location.pathname == unofficialPath) {
16 var query = window.location.search.substring(1);
25 window.close();
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/extensions/
H A DExtensionRegistryStub.js31 if (!window.InspectorExtensionRegistry) {
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DDOMWindowIndexedDatabase.cpp36 DOMWindowIndexedDatabase::DOMWindowIndexedDatabase(LocalDOMWindow& window) argument
37 : DOMWindowProperty(window.frame())
38 , m_window(window)
56 DOMWindowIndexedDatabase& DOMWindowIndexedDatabase::from(LocalDOMWindow& window) argument
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) argument
80 return from(window).indexedDB();
/external/chromium_org/third_party/webrtc/modules/desktop_capture/win/
H A Dwindow_capture_utils.h17 // Output the window rect, with the left/right/bottom frame border cropped if
18 // the window is maximized. |cropped_rect| is the cropped rect relative to the
21 bool GetCroppedWindowRect(HWND window,
/external/chromium_org/tools/gyp/test/ios/extension/ExtensionContainer/
H A DAppDelegate.h9 @property (strong, nonatomic) UIWindow *window; variable
/external/chromium_org/ui/aura/client/
H A Dfocus_client.cc23 FocusClient* GetFocusClient(Window* window) { argument
24 return GetFocusClient(static_cast<const Window*>(window));
27 FocusClient* GetFocusClient(const Window* window) { argument
28 const Window* root_window = window->GetRootWindow();
H A Dfocus_client.h19 // An interface implemented by an object that manages window focus.
27 // Focuses |window|. Passing NULL clears focus.
28 virtual void FocusWindow(Window* window) = 0;
30 // Sets focus to |window| if it's within the active window. Not intended as a
32 virtual void ResetFocusWithinActiveWindow(Window* window) = 0;
34 // Retrieves the focused window, or NULL if there is none.
40 AURA_EXPORT FocusClient* GetFocusClient(Window* window);
41 AURA_EXPORT FocusClient* GetFocusClient(const Window* window);
H A Dwindow_tree_client.h25 // window that |window| should be added to instead. |context| provides a
28 // have side effects. It should only be used when |window| is going to be
35 Window* window,
39 // Set/Get a window tree client for the RootWindow containing |window|. |window|
41 AURA_EXPORT void SetWindowTreeClient(Window* window,
43 WindowTreeClient* GetWindowTreeClient(Window* window);
45 // Adds |window| t
[all...]
/external/chromium_org/ui/aura/test/
H A Dtest_focus_client.cc8 #include "ui/aura/window.h"
33 void TestFocusClient::FocusWindow(Window* window) { argument
34 if (window && !window->CanFocus())
39 focused_window_ = window;
52 void TestFocusClient::ResetFocusWithinActiveWindow(Window* window) { argument
53 if (!window->Contains(focused_window_))
54 FocusWindow(window);
64 void TestFocusClient::OnWindowDestroying(Window* window) { argument
65 DCHECK_EQ(window, focused_window
[all...]
/external/chromium_org/ui/aura/
H A Dwindow_tracker.h18 // explicitly by Remove(), or implicitly when the window is destroyed.
29 // Adds |window| to the set of Windows being tracked.
30 void Add(Window* window);
32 // Removes |window| from the set of windows being tracked.
33 void Remove(Window* window);
35 // Returns true if |window| was previously added and has not been removed or
37 bool Contains(Window* window);
40 virtual void OnWindowDestroying(Window* window) OVERRIDE;
/external/chromium_org/ui/file_manager/video_player/js/
H A Derror_util.js11 window.JSErrorCount = 0;
16 window.onerror = function() { window.JSErrorCount++; };
46 window.JSErrorCount++;
/external/chromium_org/ui/login/
H A Dlogin_ui_tools.js19 parseInt(window.getComputedStyle(element).marginTop) -
20 parseInt(window.getComputedStyle(element).marginBottom);
/external/chromium_org/ui/wm/core/
H A Dvisibility_controller.h24 // 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.
68 // Tells |window| to animate visibility changes to its children.
70 aura::Window* window);
/external/chromium_org/ui/wm/public/
H A Dactivation_client.cc7 #include "ui/aura/window.h"
29 void SetHideOnDeactivate(Window* window, bool hide_on_deactivate) { argument
30 window->SetProperty(kHideOnDeactivate, hide_on_deactivate);
33 bool GetHideOnDeactivate(Window* window) { argument
34 return window->GetProperty(kHideOnDeactivate);

Completed in 503 milliseconds

1234567891011>>