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

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: addressed review comments of bokan 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
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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 WebViewImpl* m_webView; // Weak pointer. 176 WebViewImpl* m_webView; // Weak pointer.
176 WindowFeatures m_windowFeatures; 177 WindowFeatures m_windowFeatures;
177 Vector<PopupOpeningObserver*> m_popupOpeningObservers; 178 Vector<PopupOpeningObserver*> m_popupOpeningObservers;
178 }; 179 };
179 180
180 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient Impl(), client.isChromeClientImpl()); 181 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient Impl(), client.isChromeClientImpl());
181 182
182 } // namespace blink 183 } // namespace blink
183 184
184 #endif 185 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698