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

Unified Diff: components/web_contents_delegate_android/web_contents_delegate_android.h

Issue 684133007: Make WebContentsDelegateAndroid pass more calls to Java. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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: components/web_contents_delegate_android/web_contents_delegate_android.h
diff --git a/components/web_contents_delegate_android/web_contents_delegate_android.h b/components/web_contents_delegate_android/web_contents_delegate_android.h
index e64f07afc794695df777d6abfa03cafe65a2ae50..cac909a9a55c4cfac1280933dedf0251c2c15655 100644
--- a/components/web_contents_delegate_android/web_contents_delegate_android.h
+++ b/components/web_contents_delegate_android/web_contents_delegate_android.h
@@ -71,6 +71,21 @@ class WebContentsDelegateAndroid : public content::WebContentsDelegate {
double load_progress) override;
virtual void RendererUnresponsive(content::WebContents* source) override;
virtual void RendererResponsive(content::WebContents* source) override;
+ virtual void DidNavigateToPendingEntry(content::WebContents* source) override;
+ virtual void WebContentsCreated(content::WebContents* source_contents,
+ int opener_render_frame_id,
+ const base::string16& frame_name,
+ const GURL& target_url,
+ content::WebContents* new_contents) override;
+ virtual bool ShouldCreateWebContents(
+ content::WebContents* web_contents,
+ int route_id,
+ WindowContainerType window_container_type,
+ const base::string16& frame_name,
+ const GURL& target_url,
+ const std::string& partition_id,
+ content::SessionStorageNamespace* session_storage_namespace) override;
+ virtual bool OnGoToEntryOffset(int offset) override;
virtual void CloseContents(content::WebContents* source) override;
virtual void MoveContents(content::WebContents* source,
const gfx::Rect& pos) override;

Powered by Google App Engine
This is Rietveld 408576698