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

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

Issue 781743002: Deleted unused code about WebViewImpl::getSelectionRootBounds (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years 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
« 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 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 virtual void hidePopups() override; 261 virtual void hidePopups() override;
262 virtual void addPageOverlay(WebPageOverlay*, int /* zOrder */) override; 262 virtual void addPageOverlay(WebPageOverlay*, int /* zOrder */) override;
263 virtual void removePageOverlay(WebPageOverlay*) override; 263 virtual void removePageOverlay(WebPageOverlay*) override;
264 virtual void transferActiveWheelFlingAnimation(const WebActiveWheelFlingPara meters&) override; 264 virtual void transferActiveWheelFlingAnimation(const WebActiveWheelFlingPara meters&) override;
265 virtual bool endActiveFlingAnimation() override; 265 virtual bool endActiveFlingAnimation() override;
266 virtual void setShowPaintRects(bool) override; 266 virtual void setShowPaintRects(bool) override;
267 void setShowDebugBorders(bool); 267 void setShowDebugBorders(bool);
268 virtual void setShowFPSCounter(bool) override; 268 virtual void setShowFPSCounter(bool) override;
269 virtual void setContinuousPaintingEnabled(bool) override; 269 virtual void setContinuousPaintingEnabled(bool) override;
270 virtual void setShowScrollBottleneckRects(bool) override; 270 virtual void setShowScrollBottleneckRects(bool) override;
271 virtual void getSelectionRootBounds(WebRect& bounds) const override;
272 virtual void acceptLanguagesChanged() override; 271 virtual void acceptLanguagesChanged() override;
273 272
274 // WebViewImpl 273 // WebViewImpl
275 274
276 HitTestResult coreHitTestResultAt(const WebPoint&); 275 HitTestResult coreHitTestResultAt(const WebPoint&);
277 void suppressInvalidations(bool enable); 276 void suppressInvalidations(bool enable);
278 void invalidateRect(const IntRect&); 277 void invalidateRect(const IntRect&);
279 278
280 void setIgnoreInputEvents(bool newValue); 279 void setIgnoreInputEvents(bool newValue);
281 void setBackgroundColorOverride(WebColor); 280 void setBackgroundColorOverride(WebColor);
(...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after
752 float m_topControlsLayoutHeight; 751 float m_topControlsLayoutHeight;
753 }; 752 };
754 753
755 // We have no ways to check if the specified WebView is an instance of 754 // We have no ways to check if the specified WebView is an instance of
756 // WebViewImpl because WebViewImpl is the only implementation of WebView. 755 // WebViewImpl because WebViewImpl is the only implementation of WebView.
757 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); 756 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true);
758 757
759 } // namespace blink 758 } // namespace blink
760 759
761 #endif 760 #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