| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, Inc. All rights
reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, 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 * Copyright (C) 2012 Samsung Electronics. All rights reserved. | 4 * Copyright (C) 2012 Samsung Electronics. All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 #include "wtf/Forward.h" | 41 #include "wtf/Forward.h" |
| 42 #include "wtf/PassOwnPtr.h" | 42 #include "wtf/PassOwnPtr.h" |
| 43 #include "wtf/Vector.h" | 43 #include "wtf/Vector.h" |
| 44 | 44 |
| 45 namespace blink { | 45 namespace blink { |
| 46 | 46 |
| 47 class AXObject; | 47 class AXObject; |
| 48 class ColorChooser; | 48 class ColorChooser; |
| 49 class ColorChooserClient; | 49 class ColorChooserClient; |
| 50 class CompositorAnimationTimeline; | 50 class CompositorAnimationTimeline; |
| 51 class CompositorProxyClient; |
| 51 class DateTimeChooser; | 52 class DateTimeChooser; |
| 52 class DateTimeChooserClient; | 53 class DateTimeChooserClient; |
| 53 class Element; | 54 class Element; |
| 54 class FileChooser; | 55 class FileChooser; |
| 55 class FloatPoint; | 56 class FloatPoint; |
| 56 class Frame; | 57 class Frame; |
| 57 class GraphicsContext; | 58 class GraphicsContext; |
| 58 class GraphicsLayer; | 59 class GraphicsLayer; |
| 59 class HTMLFormControlElement; | 60 class HTMLFormControlElement; |
| 60 class HTMLInputElement; | 61 class HTMLInputElement; |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 | 263 |
| 263 virtual void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) { } | 264 virtual void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) { } |
| 264 | 265 |
| 265 virtual void onMouseDown(Node*) { } | 266 virtual void onMouseDown(Node*) { } |
| 266 | 267 |
| 267 virtual void didUpdateTopControls() const { } | 268 virtual void didUpdateTopControls() const { } |
| 268 | 269 |
| 269 virtual void registerPopupOpeningObserver(PopupOpeningObserver*) = 0; | 270 virtual void registerPopupOpeningObserver(PopupOpeningObserver*) = 0; |
| 270 virtual void unregisterPopupOpeningObserver(PopupOpeningObserver*) = 0; | 271 virtual void unregisterPopupOpeningObserver(PopupOpeningObserver*) = 0; |
| 271 | 272 |
| 273 virtual CompositorProxyClient* createCompositorProxyClient(LocalFrame*) = 0; |
| 274 |
| 272 virtual FloatSize elasticOverscroll() const { return FloatSize(); } | 275 virtual FloatSize elasticOverscroll() const { return FloatSize(); } |
| 273 | 276 |
| 274 // Called when observed XHR, fetch, and other fetch request with non-GET | 277 // Called when observed XHR, fetch, and other fetch request with non-GET |
| 275 // method is initiated from javascript. At this time, it is not guaranteed | 278 // method is initiated from javascript. At this time, it is not guaranteed |
| 276 // that this is comprehensive. | 279 // that this is comprehensive. |
| 277 virtual void didObserveNonGetFetchFromScript() const {} | 280 virtual void didObserveNonGetFetchFromScript() const {} |
| 278 | 281 |
| 279 virtual PassOwnPtr<WebFrameScheduler> createFrameScheduler(BlameContext*) =
0; | 282 virtual PassOwnPtr<WebFrameScheduler> createFrameScheduler(BlameContext*) =
0; |
| 280 | 283 |
| 281 // Returns the time of the beginning of the last beginFrame, in seconds, if
any, and 0.0 otherwise. | 284 // Returns the time of the beginning of the last beginFrame, in seconds, if
any, and 0.0 otherwise. |
| (...skipping 16 matching lines...) Expand all Loading... |
| 298 | 301 |
| 299 LayoutPoint m_lastToolTipPoint; | 302 LayoutPoint m_lastToolTipPoint; |
| 300 String m_lastToolTipText; | 303 String m_lastToolTipText; |
| 301 | 304 |
| 302 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); | 305 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); |
| 303 }; | 306 }; |
| 304 | 307 |
| 305 } // namespace blink | 308 } // namespace blink |
| 306 | 309 |
| 307 #endif // ChromeClient_h | 310 #endif // ChromeClient_h |
| OLD | NEW |