| OLD | NEW |
| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 #include "wtf/Optional.h" | 43 #include "wtf/Optional.h" |
| 44 #include "wtf/Vector.h" | 44 #include "wtf/Vector.h" |
| 45 #include <memory> | 45 #include <memory> |
| 46 | 46 |
| 47 namespace blink { | 47 namespace blink { |
| 48 | 48 |
| 49 class AXObject; | 49 class AXObject; |
| 50 class ColorChooser; | 50 class ColorChooser; |
| 51 class ColorChooserClient; | 51 class ColorChooserClient; |
| 52 class CompositorAnimationTimeline; | 52 class CompositorAnimationTimeline; |
| 53 class CompositorProxyClient; | 53 class CompositorProxyClientFactory; |
| 54 class DateTimeChooser; | 54 class DateTimeChooser; |
| 55 class DateTimeChooserClient; | 55 class DateTimeChooserClient; |
| 56 class Element; | 56 class Element; |
| 57 class FileChooser; | 57 class FileChooser; |
| 58 class FloatPoint; | 58 class FloatPoint; |
| 59 class Frame; | 59 class Frame; |
| 60 class GraphicsLayer; | 60 class GraphicsLayer; |
| 61 class HTMLFormControlElement; | 61 class HTMLFormControlElement; |
| 62 class HTMLInputElement; | 62 class HTMLInputElement; |
| 63 class HTMLSelectElement; | 63 class HTMLSelectElement; |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 | 310 |
| 311 virtual void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) {} | 311 virtual void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) {} |
| 312 | 312 |
| 313 virtual void onMouseDown(Node*) {} | 313 virtual void onMouseDown(Node*) {} |
| 314 | 314 |
| 315 virtual void didUpdateBrowserControls() const {} | 315 virtual void didUpdateBrowserControls() const {} |
| 316 | 316 |
| 317 virtual void registerPopupOpeningObserver(PopupOpeningObserver*) = 0; | 317 virtual void registerPopupOpeningObserver(PopupOpeningObserver*) = 0; |
| 318 virtual void unregisterPopupOpeningObserver(PopupOpeningObserver*) = 0; | 318 virtual void unregisterPopupOpeningObserver(PopupOpeningObserver*) = 0; |
| 319 | 319 |
| 320 virtual CompositorProxyClient* createCompositorProxyClient(LocalFrame*) = 0; | 320 virtual CompositorProxyClientFactory* compositorProxyClientFactory( |
| 321 LocalFrame*) = 0; |
| 321 | 322 |
| 322 virtual FloatSize elasticOverscroll() const { return FloatSize(); } | 323 virtual FloatSize elasticOverscroll() const { return FloatSize(); } |
| 323 | 324 |
| 324 // 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 |
| 325 // 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 |
| 326 // that this is comprehensive. | 327 // that this is comprehensive. |
| 327 virtual void didObserveNonGetFetchFromScript() const {} | 328 virtual void didObserveNonGetFetchFromScript() const {} |
| 328 | 329 |
| 329 virtual std::unique_ptr<WebFrameScheduler> createFrameScheduler( | 330 virtual std::unique_ptr<WebFrameScheduler> createFrameScheduler( |
| 330 BlameContext*) = 0; | 331 BlameContext*) = 0; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 358 | 359 |
| 359 LayoutPoint m_lastToolTipPoint; | 360 LayoutPoint m_lastToolTipPoint; |
| 360 String m_lastToolTipText; | 361 String m_lastToolTipText; |
| 361 | 362 |
| 362 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); | 363 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); |
| 363 }; | 364 }; |
| 364 | 365 |
| 365 } // namespace blink | 366 } // namespace blink |
| 366 | 367 |
| 367 #endif // ChromeClient_h | 368 #endif // ChromeClient_h |
| OLD | NEW |