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

Side by Side Diff: third_party/WebKit/Source/web/WebViewImpl.h

Issue 2864833002: Tapping handle shouldn't select misspelled word (Closed)
Patch Set: fix naming Created 3 years, 7 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) 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
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(bool from_touch_handle) 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 502 matching lines...) Expand 10 before | Expand all | Expand 10 after
746 Persistent<ResizeViewportAnchor> resize_viewport_anchor_; 746 Persistent<ResizeViewportAnchor> resize_viewport_anchor_;
747 }; 747 };
748 748
749 // We have no ways to check if the specified WebView is an instance of 749 // We have no ways to check if the specified WebView is an instance of
750 // WebViewImpl because WebViewImpl is the only implementation of WebView. 750 // WebViewImpl because WebViewImpl is the only implementation of WebView.
751 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); 751 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true);
752 752
753 } // namespace blink 753 } // namespace blink
754 754
755 #endif 755 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698