OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 const WebSize&) override; | 223 const WebSize&) override; |
224 unsigned long CreateUniqueIdentifierForRequest() override; | 224 unsigned long CreateUniqueIdentifierForRequest() override; |
225 void EnableDeviceEmulation(const WebDeviceEmulationParams&) override; | 225 void EnableDeviceEmulation(const WebDeviceEmulationParams&) override; |
226 void DisableDeviceEmulation() override; | 226 void DisableDeviceEmulation() override; |
227 WebAXObject AccessibilityObject() override; | 227 WebAXObject AccessibilityObject() override; |
228 void SetSelectionColors(unsigned active_background_color, | 228 void SetSelectionColors(unsigned active_background_color, |
229 unsigned active_foreground_color, | 229 unsigned active_foreground_color, |
230 unsigned inactive_background_color, | 230 unsigned inactive_background_color, |
231 unsigned inactive_foreground_color) override; | 231 unsigned inactive_foreground_color) override; |
232 void PerformCustomContextMenuAction(unsigned action) override; | 232 void PerformCustomContextMenuAction(unsigned action) override; |
233 void ShowContextMenu() override; | 233 void ShowContextMenu(WebMenuSourceType) override; |
234 void DidCloseContextMenu() override; | 234 void DidCloseContextMenu() override; |
235 void HidePopups() override; | 235 void HidePopups() override; |
236 void SetPageOverlayColor(WebColor) override; | 236 void SetPageOverlayColor(WebColor) override; |
237 WebPageImportanceSignals* PageImportanceSignals() override; | 237 WebPageImportanceSignals* PageImportanceSignals() override; |
238 void TransferActiveWheelFlingAnimation( | 238 void TransferActiveWheelFlingAnimation( |
239 const WebActiveWheelFlingParameters&) override; | 239 const WebActiveWheelFlingParameters&) override; |
240 bool EndActiveFlingAnimation() override; | 240 bool EndActiveFlingAnimation() override; |
241 bool IsFlinging() const override { return !!gesture_animation_.get(); } | 241 bool IsFlinging() const override { return !!gesture_animation_.get(); } |
242 void SetShowPaintRects(bool) override; | 242 void SetShowPaintRects(bool) override; |
243 void SetShowDebugBorders(bool) override; | 243 void SetShowDebugBorders(bool) override; |
(...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
743 Persistent<ResizeViewportAnchor> resize_viewport_anchor_; | 743 Persistent<ResizeViewportAnchor> resize_viewport_anchor_; |
744 }; | 744 }; |
745 | 745 |
746 // We have no ways to check if the specified WebView is an instance of | 746 // We have no ways to check if the specified WebView is an instance of |
747 // WebViewImpl because WebViewImpl is the only implementation of WebView. | 747 // WebViewImpl because WebViewImpl is the only implementation of WebView. |
748 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); | 748 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); |
749 | 749 |
750 } // namespace blink | 750 } // namespace blink |
751 | 751 |
752 #endif | 752 #endif |
OLD | NEW |