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

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

Issue 1056983004: OverscrollGlow for mainThread-{BLINK CHANGES} (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebased to latest Created 5 years, 6 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
« no previous file with comments | « Source/platform/scroll/Scrollbar.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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
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) override;
67 void show(NavigationPolicy) override; 67 void show(NavigationPolicy) override;
68 void didOverscroll(const FloatSize&, const FloatSize&, const FloatPoint&, co nst FloatSize&) override;
68 void setToolbarsVisible(bool) override; 69 void setToolbarsVisible(bool) override;
69 bool toolbarsVisible() override; 70 bool toolbarsVisible() override;
70 void setStatusbarVisible(bool) override; 71 void setStatusbarVisible(bool) override;
71 bool statusbarVisible() override; 72 bool statusbarVisible() override;
72 void setScrollbarsVisible(bool) override; 73 void setScrollbarsVisible(bool) override;
73 bool scrollbarsVisible() override; 74 bool scrollbarsVisible() override;
74 void setMenubarVisible(bool) override; 75 void setMenubarVisible(bool) override;
75 bool menubarVisible() override; 76 bool menubarVisible() override;
76 void setResizable(bool) override; 77 void setResizable(bool) override;
77 bool shouldReportDetailedMessageForSource(LocalFrame&, const String&) overri de; 78 bool shouldReportDetailedMessageForSource(LocalFrame&, const String&) overri de;
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 WindowFeatures m_windowFeatures; 178 WindowFeatures m_windowFeatures;
178 Vector<PopupOpeningObserver*> m_popupOpeningObservers; 179 Vector<PopupOpeningObserver*> m_popupOpeningObservers;
179 Cursor m_lastSetMouseCursorForTesting; 180 Cursor m_lastSetMouseCursorForTesting;
180 }; 181 };
181 182
182 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient Impl(), client.isChromeClientImpl()); 183 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient Impl(), client.isChromeClientImpl());
183 184
184 } // namespace blink 185 } // namespace blink
185 186
186 #endif 187 #endif
OLDNEW
« no previous file with comments | « Source/platform/scroll/Scrollbar.cpp ('k') | Source/web/ChromeClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698