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

Unified Diff: content/browser/web_contents/interstitial_page_impl.cc

Issue 21777003: DevTools: [Android] implement RenderWidgetHostViewAndroid::CopyFromCompositingSurface (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix clang bots. Created 7 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/web_contents/interstitial_page_impl.cc
diff --git a/content/browser/web_contents/interstitial_page_impl.cc b/content/browser/web_contents/interstitial_page_impl.cc
index f08b0c9b37d459cb10095fffca74a28c6774131c..f976a5eca00a584b4fbe5f3820290c2d1cf22d09 100644
--- a/content/browser/web_contents/interstitial_page_impl.cc
+++ b/content/browser/web_contents/interstitial_page_impl.cc
@@ -88,6 +88,10 @@ class InterstitialPageImpl::InterstitialPageRVHDelegateView
virtual void UpdateDragCursor(WebDragOperation operation) OVERRIDE;
virtual void GotFocus() OVERRIDE;
virtual void TakeFocus(bool reverse) OVERRIDE;
+ virtual bool GrabSnapshot(const std::string& format,
+ int quality,
+ double scale,
+ std::vector<uint8>* data) OVERRIDE;
virtual void OnFindReply(int request_id,
int number_of_matches,
const gfx::Rect& selection_rect,
@@ -811,6 +815,12 @@ void InterstitialPageImpl::InterstitialPageRVHDelegateView::TakeFocus(
web_contents->GetDelegateView()->TakeFocus(reverse);
}
+bool InterstitialPageImpl::InterstitialPageRVHDelegateView::GrabSnapshot(
+ const std::string& format, int quality, double scale,
+ std::vector<uint8>* data) {
+ return false;
+}
+
void InterstitialPageImpl::InterstitialPageRVHDelegateView::OnFindReply(
int request_id, int number_of_matches, const gfx::Rect& selection_rect,
int active_match_ordinal, bool final_update) {

Powered by Google App Engine
This is Rietveld 408576698