Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(306)

Side by Side Diff: Source/web/ChromeClientImpl.h

Issue 1163543002: Reland "Correctly set ScriptState in the image loader microtask" (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: git cl try Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/page/CreateWindow.cpp ('k') | Source/web/ChromeClientImpl.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 void chromeDestroyed() override; 56 void chromeDestroyed() override;
57 void setWindowRect(const IntRect&) override; 57 void setWindowRect(const IntRect&) override;
58 IntRect windowRect() override; 58 IntRect windowRect() override;
59 IntRect pageRect() override; 59 IntRect pageRect() override;
60 void focus() override; 60 void focus() override;
61 bool canTakeFocus(WebFocusType) override; 61 bool canTakeFocus(WebFocusType) override;
62 void takeFocus(WebFocusType) override; 62 void takeFocus(WebFocusType) override;
63 void focusedNodeChanged(Node* fromNode, Node* toNode) override; 63 void focusedNodeChanged(Node* fromNode, Node* toNode) override;
64 void focusedFrameChanged(LocalFrame*) override; 64 void focusedFrameChanged(LocalFrame*) override;
65 Page* createWindow( 65 Page* createWindow(
66 LocalFrame*, const FrameLoadRequest&, const WindowFeatures&, NavigationP olicy, ShouldSendReferrer) override; 66 LocalFrame*, const FrameLoadRequest&, const WindowFeatures&, NavigationP olicy, ShouldSendReferrer, CreateWindowReason) override;
67 void show(NavigationPolicy) override; 67 void show(NavigationPolicy, CreateWindowReason) override;
68 void didOverscroll(const FloatSize&, const FloatSize&, const FloatPoint&, co nst FloatSize&) override; 68 void didOverscroll(const FloatSize&, const FloatSize&, const FloatPoint&, co nst FloatSize&) override;
69 void setToolbarsVisible(bool) override; 69 void setToolbarsVisible(bool) override;
70 bool toolbarsVisible() override; 70 bool toolbarsVisible() override;
71 void setStatusbarVisible(bool) override; 71 void setStatusbarVisible(bool) override;
72 bool statusbarVisible() override; 72 bool statusbarVisible() override;
73 void setScrollbarsVisible(bool) override; 73 void setScrollbarsVisible(bool) override;
74 bool scrollbarsVisible() override; 74 bool scrollbarsVisible() override;
75 void setMenubarVisible(bool) override; 75 void setMenubarVisible(bool) override;
76 bool menubarVisible() override; 76 bool menubarVisible() override;
77 void setResizable(bool) override; 77 void setResizable(bool) override;
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 WindowFeatures m_windowFeatures; 181 WindowFeatures m_windowFeatures;
182 Vector<PopupOpeningObserver*> m_popupOpeningObservers; 182 Vector<PopupOpeningObserver*> m_popupOpeningObservers;
183 Cursor m_lastSetMouseCursorForTesting; 183 Cursor m_lastSetMouseCursorForTesting;
184 }; 184 };
185 185
186 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient Impl(), client.isChromeClientImpl()); 186 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient Impl(), client.isChromeClientImpl());
187 187
188 } // namespace blink 188 } // namespace blink
189 189
190 #endif 190 #endif
OLDNEW
« no previous file with comments | « Source/core/page/CreateWindow.cpp ('k') | Source/web/ChromeClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698