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

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

Issue 469693003: Cleanup: Remove getSmartClipData function from WebView API. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/web/WebViewImpl.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 virtual void setCompositorDeviceScaleFactorOverride(float) OVERRIDE; 234 virtual void setCompositorDeviceScaleFactorOverride(float) OVERRIDE;
235 virtual void setRootLayerTransform(const WebSize& offset, float scale) OVERR IDE; 235 virtual void setRootLayerTransform(const WebSize& offset, float scale) OVERR IDE;
236 virtual WebDevToolsAgent* devToolsAgent() OVERRIDE; 236 virtual WebDevToolsAgent* devToolsAgent() OVERRIDE;
237 virtual WebAXObject accessibilityObject() OVERRIDE; 237 virtual WebAXObject accessibilityObject() OVERRIDE;
238 virtual void setSelectionColors(unsigned activeBackgroundColor, 238 virtual void setSelectionColors(unsigned activeBackgroundColor,
239 unsigned activeForegroundColor, 239 unsigned activeForegroundColor,
240 unsigned inactiveBackgroundColor, 240 unsigned inactiveBackgroundColor,
241 unsigned inactiveForegroundColor) OVERRIDE; 241 unsigned inactiveForegroundColor) OVERRIDE;
242 virtual void performCustomContextMenuAction(unsigned action) OVERRIDE; 242 virtual void performCustomContextMenuAction(unsigned action) OVERRIDE;
243 virtual void showContextMenu() OVERRIDE; 243 virtual void showContextMenu() OVERRIDE;
244 virtual void getSmartClipData(WebRect, WebString&, WebRect&) OVERRIDE;
245 virtual void extractSmartClipData(WebRect, WebString&, WebString&, WebRect&) OVERRIDE; 244 virtual void extractSmartClipData(WebRect, WebString&, WebString&, WebRect&) OVERRIDE;
246 virtual void hidePopups() OVERRIDE; 245 virtual void hidePopups() OVERRIDE;
247 virtual void addPageOverlay(WebPageOverlay*, int /* zOrder */) OVERRIDE; 246 virtual void addPageOverlay(WebPageOverlay*, int /* zOrder */) OVERRIDE;
248 virtual void removePageOverlay(WebPageOverlay*) OVERRIDE; 247 virtual void removePageOverlay(WebPageOverlay*) OVERRIDE;
249 virtual void transferActiveWheelFlingAnimation(const WebActiveWheelFlingPara meters&) OVERRIDE; 248 virtual void transferActiveWheelFlingAnimation(const WebActiveWheelFlingPara meters&) OVERRIDE;
250 virtual bool endActiveFlingAnimation() OVERRIDE; 249 virtual bool endActiveFlingAnimation() OVERRIDE;
251 virtual void setShowPaintRects(bool) OVERRIDE; 250 virtual void setShowPaintRects(bool) OVERRIDE;
252 void setShowDebugBorders(bool); 251 void setShowDebugBorders(bool);
253 virtual void setShowFPSCounter(bool) OVERRIDE; 252 virtual void setShowFPSCounter(bool) OVERRIDE;
254 virtual void setContinuousPaintingEnabled(bool) OVERRIDE; 253 virtual void setContinuousPaintingEnabled(bool) OVERRIDE;
(...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
716 bool m_userGestureObserved; 715 bool m_userGestureObserved;
717 }; 716 };
718 717
719 // We have no ways to check if the specified WebView is an instance of 718 // We have no ways to check if the specified WebView is an instance of
720 // WebViewImpl because WebViewImpl is the only implementation of WebView. 719 // WebViewImpl because WebViewImpl is the only implementation of WebView.
721 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); 720 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true);
722 721
723 } // namespace blink 722 } // namespace blink
724 723
725 #endif 724 #endif
OLDNEW
« no previous file with comments | « no previous file | Source/web/WebViewImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698