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

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

Issue 2894973002: Provide WebContents::CreateParams to tab helpers. (Closed)
Patch Set: rebase Created 3 years, 7 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/browser/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_BROWSER_AW_WEB_CONTENTS_DELEGATE_H_ 5 #ifndef ANDROID_WEBVIEW_BROWSER_AW_WEB_CONTENTS_DELEGATE_H_
6 #define ANDROID_WEBVIEW_BROWSER_AW_WEB_CONTENTS_DELEGATE_H_ 6 #define ANDROID_WEBVIEW_BROWSER_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 23 matching lines...) Expand all
34 const content::FileChooserParams& params) override; 34 const content::FileChooserParams& params) override;
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(
45 int opener_render_process_id, 45 content::WebContents* source_contents,
46 int opener_render_frame_id, 46 int opener_render_process_id,
47 const std::string& frame_name, 47 int opener_render_frame_id,
48 const GURL& target_url, 48 const std::string& frame_name,
49 content::WebContents* new_contents) override; 49 const GURL& target_url,
50 content::WebContents* new_contents,
51 const base::Optional<content::WebContents::CreateParams>& create_params)
52 override;
50 53
51 void CloseContents(content::WebContents* source) override; 54 void CloseContents(content::WebContents* source) override;
52 void ActivateContents(content::WebContents* contents) override; 55 void ActivateContents(content::WebContents* contents) override;
53 void LoadingStateChanged(content::WebContents* source, 56 void LoadingStateChanged(content::WebContents* source,
54 bool to_different_document) override; 57 bool to_different_document) override;
55 bool ShouldResumeRequestsForCreatedWindow() override; 58 bool ShouldResumeRequestsForCreatedWindow() override;
56 void RequestMediaAccessPermission( 59 void RequestMediaAccessPermission(
57 content::WebContents* web_contents, 60 content::WebContents* web_contents,
58 const content::MediaStreamRequest& request, 61 const content::MediaStreamRequest& request,
59 const content::MediaResponseCallback& callback) override; 62 const content::MediaResponseCallback& callback) override;
60 void EnterFullscreenModeForTab(content::WebContents* web_contents, 63 void EnterFullscreenModeForTab(content::WebContents* web_contents,
61 const GURL& origin) override; 64 const GURL& origin) override;
62 void ExitFullscreenModeForTab(content::WebContents* web_contents) override; 65 void ExitFullscreenModeForTab(content::WebContents* web_contents) override;
63 bool IsFullscreenForTabOrPending( 66 bool IsFullscreenForTabOrPending(
64 const content::WebContents* web_contents) const override; 67 const content::WebContents* web_contents) const override;
65 68
66 private: 69 private:
67 bool is_fullscreen_; 70 bool is_fullscreen_;
68 }; 71 };
69 72
70 bool RegisterAwWebContentsDelegate(JNIEnv* env); 73 bool RegisterAwWebContentsDelegate(JNIEnv* env);
71 74
72 } // namespace android_webview 75 } // namespace android_webview
73 76
74 #endif // ANDROID_WEBVIEW_BROWSER_AW_WEB_CONTENTS_DELEGATE_H_ 77 #endif // ANDROID_WEBVIEW_BROWSER_AW_WEB_CONTENTS_DELEGATE_H_
OLDNEW
« no previous file with comments | « no previous file | android_webview/browser/aw_web_contents_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698