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

Side by Side Diff: chrome/browser/chrome_content_browser_client.h

Issue 454253002: Location chooser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing meacer@ comments Created 6 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
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 CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 5 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
7 7
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <utility> 10 #include <utility>
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 virtual void ShowDesktopNotification( 198 virtual void ShowDesktopNotification(
199 const content::ShowDesktopNotificationHostMsgParams& params, 199 const content::ShowDesktopNotificationHostMsgParams& params,
200 content::RenderFrameHost* render_frame_host, 200 content::RenderFrameHost* render_frame_host,
201 scoped_ptr<content::DesktopNotificationDelegate> delegate, 201 scoped_ptr<content::DesktopNotificationDelegate> delegate,
202 base::Closure* cancel_callback) OVERRIDE; 202 base::Closure* cancel_callback) OVERRIDE;
203 virtual void RequestGeolocationPermission( 203 virtual void RequestGeolocationPermission(
204 content::WebContents* web_contents, 204 content::WebContents* web_contents,
205 int bridge_id, 205 int bridge_id,
206 const GURL& requesting_frame, 206 const GURL& requesting_frame,
207 bool user_gesture, 207 bool user_gesture,
208 base::Callback<void(bool)> result_callback, 208 base::Callback<void(int, bool)> result_callback,
209 base::Closure* cancel_callback) OVERRIDE; 209 base::Closure* cancel_callback) OVERRIDE;
210 virtual void RequestMidiSysExPermission( 210 virtual void RequestMidiSysExPermission(
211 content::WebContents* web_contents, 211 content::WebContents* web_contents,
212 int bridge_id, 212 int bridge_id,
213 const GURL& requesting_frame, 213 const GURL& requesting_frame,
214 bool user_gesture, 214 bool user_gesture,
215 base::Callback<void(bool)> result_callback, 215 base::Callback<void(bool)> result_callback,
216 base::Closure* cancel_callback) OVERRIDE; 216 base::Closure* cancel_callback) OVERRIDE;
217 virtual void DidUseGeolocationPermission(content::WebContents* web_contents, 217 virtual void DidUseGeolocationPermission(content::WebContents* web_contents,
218 const GURL& frame_url, 218 const GURL& frame_url,
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 std::vector<ChromeContentBrowserClientParts*> extra_parts_; 353 std::vector<ChromeContentBrowserClientParts*> extra_parts_;
354 354
355 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; 355 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_;
356 356
357 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); 357 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient);
358 }; 358 };
359 359
360 } // namespace chrome 360 } // namespace chrome
361 361
362 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 362 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698