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

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

Issue 2206963002: Plumb the frame name through the popup blocker (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 unified diff | Download patch
« no previous file with comments | « no previous file | android_webview/browser/aw_content_browser_client.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_LIB_AW_CONTENT_BROWSER_CLIENT_H_ 5 #ifndef ANDROID_WEBVIEW_LIB_AW_CONTENT_BROWSER_CLIENT_H_
6 #define ANDROID_WEBVIEW_LIB_AW_CONTENT_BROWSER_CLIENT_H_ 6 #define ANDROID_WEBVIEW_LIB_AW_CONTENT_BROWSER_CLIENT_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include <memory> 10 #include <memory>
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 void SelectClientCertificate( 94 void SelectClientCertificate(
95 content::WebContents* web_contents, 95 content::WebContents* web_contents,
96 net::SSLCertRequestInfo* cert_request_info, 96 net::SSLCertRequestInfo* cert_request_info,
97 std::unique_ptr<content::ClientCertificateDelegate> delegate) override; 97 std::unique_ptr<content::ClientCertificateDelegate> delegate) override;
98 bool CanCreateWindow(const GURL& opener_url, 98 bool CanCreateWindow(const GURL& opener_url,
99 const GURL& opener_top_level_frame_url, 99 const GURL& opener_top_level_frame_url,
100 const GURL& source_origin, 100 const GURL& source_origin,
101 WindowContainerType container_type, 101 WindowContainerType container_type,
102 const GURL& target_url, 102 const GURL& target_url,
103 const content::Referrer& referrer, 103 const content::Referrer& referrer,
104 const std::string& frame_name,
104 WindowOpenDisposition disposition, 105 WindowOpenDisposition disposition,
105 const blink::WebWindowFeatures& features, 106 const blink::WebWindowFeatures& features,
106 bool user_gesture, 107 bool user_gesture,
107 bool opener_suppressed, 108 bool opener_suppressed,
108 content::ResourceContext* context, 109 content::ResourceContext* context,
109 int render_process_id, 110 int render_process_id,
110 int opener_render_view_id, 111 int opener_render_view_id,
111 int opener_render_frame_id, 112 int opener_render_frame_id,
112 bool* no_javascript_access) override; 113 bool* no_javascript_access) override;
113 void ResourceDispatcherHostCreated() override; 114 void ResourceDispatcherHostCreated() override;
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 std::unique_ptr<AwWebPreferencesPopulater> preferences_populater_; 148 std::unique_ptr<AwWebPreferencesPopulater> preferences_populater_;
148 149
149 JniDependencyFactory* native_factory_; 150 JniDependencyFactory* native_factory_;
150 151
151 DISALLOW_COPY_AND_ASSIGN(AwContentBrowserClient); 152 DISALLOW_COPY_AND_ASSIGN(AwContentBrowserClient);
152 }; 153 };
153 154
154 } // namespace android_webview 155 } // namespace android_webview
155 156
156 #endif // ANDROID_WEBVIEW_LIB_AW_CONTENT_BROWSER_CLIENT_H_ 157 #endif // ANDROID_WEBVIEW_LIB_AW_CONTENT_BROWSER_CLIENT_H_
OLDNEW
« no previous file with comments | « no previous file | android_webview/browser/aw_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698