| 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) {
|
|
|