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

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

Issue 578883003: Remove the strict dependency on WebContents for Web Notifications. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
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 "android_webview/browser/aw_web_preferences_populater.h" 8 #include "android_webview/browser/aw_web_preferences_populater.h"
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 const net::HttpNetworkSession* network_session, 109 const net::HttpNetworkSession* network_session,
110 net::SSLCertRequestInfo* cert_request_info, 110 net::SSLCertRequestInfo* cert_request_info,
111 const base::Callback<void(net::X509Certificate*)>& callback) OVERRIDE; 111 const base::Callback<void(net::X509Certificate*)>& callback) OVERRIDE;
112 virtual blink::WebNotificationPermission 112 virtual blink::WebNotificationPermission
113 CheckDesktopNotificationPermission( 113 CheckDesktopNotificationPermission(
114 const GURL& source_url, 114 const GURL& source_url,
115 content::ResourceContext* context, 115 content::ResourceContext* context,
116 int render_process_id) OVERRIDE; 116 int render_process_id) OVERRIDE;
117 virtual void ShowDesktopNotification( 117 virtual void ShowDesktopNotification(
118 const content::ShowDesktopNotificationHostMsgParams& params, 118 const content::ShowDesktopNotificationHostMsgParams& params,
119 content::RenderFrameHost* render_frame_host, 119 content::BrowserContext* browser_context,
120 scoped_ptr<content::DesktopNotificationDelegate> delegate, 120 scoped_ptr<content::DesktopNotificationDelegate> delegate,
121 base::Closure* cancel_callback) OVERRIDE; 121 base::Closure* cancel_callback) OVERRIDE;
122 virtual void RequestGeolocationPermission( 122 virtual void RequestGeolocationPermission(
123 content::WebContents* web_contents, 123 content::WebContents* web_contents,
124 int bridge_id, 124 int bridge_id,
125 const GURL& requesting_frame, 125 const GURL& requesting_frame,
126 bool user_gesture, 126 bool user_gesture,
127 base::Callback<void(bool)> result_callback, 127 base::Callback<void(bool)> result_callback,
128 base::Closure* cancel_callback) OVERRIDE; 128 base::Closure* cancel_callback) OVERRIDE;
129 virtual void RequestMidiSysExPermission( 129 virtual void RequestMidiSysExPermission(
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 scoped_ptr<AwWebPreferencesPopulater> preferences_populater_; 183 scoped_ptr<AwWebPreferencesPopulater> preferences_populater_;
184 184
185 JniDependencyFactory* native_factory_; 185 JniDependencyFactory* native_factory_;
186 186
187 DISALLOW_COPY_AND_ASSIGN(AwContentBrowserClient); 187 DISALLOW_COPY_AND_ASSIGN(AwContentBrowserClient);
188 }; 188 };
189 189
190 } // namespace android_webview 190 } // namespace android_webview
191 191
192 #endif // ANDROID_WEBVIEW_LIB_AW_CONTENT_BROWSER_CLIENT_H_ 192 #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') | chrome/browser/chrome_content_browser_client.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698