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

Side by Side Diff: android_webview/native/aw_web_contents_delegate.h

Issue 2385363002: Pass the RenderProcessHost id on retargeting. (Closed)
Patch Set: Address review feedback and compile problem. Created 4 years, 2 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
« no previous file with comments | « no previous file | android_webview/native/aw_web_contents_delegate.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef ANDROID_WEBVIEW_NATIVE_AW_WEB_CONTENTS_DELEGATE_H_ 5 #ifndef ANDROID_WEBVIEW_NATIVE_AW_WEB_CONTENTS_DELEGATE_H_
6 #define ANDROID_WEBVIEW_NATIVE_AW_WEB_CONTENTS_DELEGATE_H_ 6 #define ANDROID_WEBVIEW_NATIVE_AW_WEB_CONTENTS_DELEGATE_H_
7 7
8 #include <jni.h> 8 #include <jni.h>
9 9
10 #include "components/web_contents_delegate_android/web_contents_delegate_android .h" 10 #include "components/web_contents_delegate_android/web_contents_delegate_android .h"
(...skipping 24 matching lines...) Expand all
35 void AddNewContents(content::WebContents* source, 35 void AddNewContents(content::WebContents* source,
36 content::WebContents* new_contents, 36 content::WebContents* new_contents,
37 WindowOpenDisposition disposition, 37 WindowOpenDisposition disposition,
38 const gfx::Rect& initial_rect, 38 const gfx::Rect& initial_rect,
39 bool user_gesture, 39 bool user_gesture,
40 bool* was_blocked) override; 40 bool* was_blocked) override;
41 41
42 void NavigationStateChanged(content::WebContents* source, 42 void NavigationStateChanged(content::WebContents* source,
43 content::InvalidateTypes changed_flags) override; 43 content::InvalidateTypes changed_flags) override;
44 void WebContentsCreated(content::WebContents* source_contents, 44 void WebContentsCreated(content::WebContents* source_contents,
45 int opener_render_process_id,
45 int opener_render_frame_id, 46 int opener_render_frame_id,
46 const std::string& frame_name, 47 const std::string& frame_name,
47 const GURL& target_url, 48 const GURL& target_url,
48 content::WebContents* new_contents) override; 49 content::WebContents* new_contents) override;
49 50
50 void CloseContents(content::WebContents* source) override; 51 void CloseContents(content::WebContents* source) override;
51 void ActivateContents(content::WebContents* contents) override; 52 void ActivateContents(content::WebContents* contents) override;
52 void LoadingStateChanged(content::WebContents* source, 53 void LoadingStateChanged(content::WebContents* source,
53 bool to_different_document) override; 54 bool to_different_document) override;
54 bool ShouldResumeRequestsForCreatedWindow() override; 55 bool ShouldResumeRequestsForCreatedWindow() override;
55 void RequestMediaAccessPermission( 56 void RequestMediaAccessPermission(
56 content::WebContents* web_contents, 57 content::WebContents* web_contents,
57 const content::MediaStreamRequest& request, 58 const content::MediaStreamRequest& request,
58 const content::MediaResponseCallback& callback) override; 59 const content::MediaResponseCallback& callback) override;
59 void EnterFullscreenModeForTab(content::WebContents* web_contents, 60 void EnterFullscreenModeForTab(content::WebContents* web_contents,
60 const GURL& origin) override; 61 const GURL& origin) override;
61 void ExitFullscreenModeForTab(content::WebContents* web_contents) override; 62 void ExitFullscreenModeForTab(content::WebContents* web_contents) override;
62 bool IsFullscreenForTabOrPending( 63 bool IsFullscreenForTabOrPending(
63 const content::WebContents* web_contents) const override; 64 const content::WebContents* web_contents) const override;
64 65
65 private: 66 private:
66 bool is_fullscreen_; 67 bool is_fullscreen_;
67 }; 68 };
68 69
69 bool RegisterAwWebContentsDelegate(JNIEnv* env); 70 bool RegisterAwWebContentsDelegate(JNIEnv* env);
70 71
71 } // namespace android_webview 72 } // namespace android_webview
72 73
73 #endif // ANDROID_WEBVIEW_NATIVE_AW_WEB_CONTENTS_DELEGATE_H_ 74 #endif // ANDROID_WEBVIEW_NATIVE_AW_WEB_CONTENTS_DELEGATE_H_
OLDNEW
« no previous file with comments | « no previous file | android_webview/native/aw_web_contents_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698