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

Side by Side Diff: third_party/WebKit/Source/core/page/ChromeClient.h

Issue 2443613002: Rename classes related to top controls (Closed)
Patch Set: fix test Created 4 years, 1 month 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) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, Inc. All rights 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, Inc. All rights
3 * reserved. 3 * reserved.
4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. 5 * Copyright (C) 2012 Samsung Electronics. All rights reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 virtual void willSetInputMethodState() {} 306 virtual void willSetInputMethodState() {}
307 virtual void didUpdateTextOfFocusedElementByNonUserInput(LocalFrame&) {} 307 virtual void didUpdateTextOfFocusedElementByNonUserInput(LocalFrame&) {}
308 virtual void showImeIfNeeded() {} 308 virtual void showImeIfNeeded() {}
309 309
310 virtual void registerViewportLayers() const {} 310 virtual void registerViewportLayers() const {}
311 311
312 virtual void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) {} 312 virtual void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) {}
313 313
314 virtual void onMouseDown(Node*) {} 314 virtual void onMouseDown(Node*) {}
315 315
316 virtual void didUpdateTopControls() const {} 316 virtual void didUpdateBrowserControls() const {}
317 317
318 virtual void registerPopupOpeningObserver(PopupOpeningObserver*) = 0; 318 virtual void registerPopupOpeningObserver(PopupOpeningObserver*) = 0;
319 virtual void unregisterPopupOpeningObserver(PopupOpeningObserver*) = 0; 319 virtual void unregisterPopupOpeningObserver(PopupOpeningObserver*) = 0;
320 320
321 virtual CompositorProxyClient* createCompositorProxyClient(LocalFrame*) = 0; 321 virtual CompositorProxyClient* createCompositorProxyClient(LocalFrame*) = 0;
322 322
323 virtual FloatSize elasticOverscroll() const { return FloatSize(); } 323 virtual FloatSize elasticOverscroll() const { return FloatSize(); }
324 324
325 // Called when observed XHR, fetch, and other fetch request with non-GET 325 // Called when observed XHR, fetch, and other fetch request with non-GET
326 // method is initiated from javascript. At this time, it is not guaranteed 326 // method is initiated from javascript. At this time, it is not guaranteed
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 359
360 LayoutPoint m_lastToolTipPoint; 360 LayoutPoint m_lastToolTipPoint;
361 String m_lastToolTipText; 361 String m_lastToolTipText;
362 362
363 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); 363 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood);
364 }; 364 };
365 365
366 } // namespace blink 366 } // namespace blink
367 367
368 #endif // ChromeClient_h 368 #endif // ChromeClient_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698