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

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

Issue 11876007: Connecting webrtc-internals WebUI frontend with the backend (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@main
Patch Set: Fixing jam's comments Created 7 years, 11 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 net::SSLCertRequestInfo* cert_request_info, 145 net::SSLCertRequestInfo* cert_request_info,
146 const base::Callback<void(net::X509Certificate*)>& callback) OVERRIDE; 146 const base::Callback<void(net::X509Certificate*)>& callback) OVERRIDE;
147 virtual void AddCertificate( 147 virtual void AddCertificate(
148 net::URLRequest* request, 148 net::URLRequest* request,
149 net::CertificateMimeType cert_type, 149 net::CertificateMimeType cert_type,
150 const void* cert_data, 150 const void* cert_data,
151 size_t cert_size, 151 size_t cert_size,
152 int render_process_id, 152 int render_process_id,
153 int render_view_id) OVERRIDE; 153 int render_view_id) OVERRIDE;
154 virtual content::MediaObserver* GetMediaObserver() OVERRIDE; 154 virtual content::MediaObserver* GetMediaObserver() OVERRIDE;
155 virtual content::WebRTCInternals* GetWebRTCInternals() OVERRIDE;
155 virtual void RequestDesktopNotificationPermission( 156 virtual void RequestDesktopNotificationPermission(
156 const GURL& source_origin, 157 const GURL& source_origin,
157 int callback_context, 158 int callback_context,
158 int render_process_id, 159 int render_process_id,
159 int render_view_id) OVERRIDE; 160 int render_view_id) OVERRIDE;
160 virtual WebKit::WebNotificationPresenter::Permission 161 virtual WebKit::WebNotificationPresenter::Permission
161 CheckDesktopNotificationPermission( 162 CheckDesktopNotificationPermission(
162 const GURL& source_origin, 163 const GURL& source_origin,
163 content::ResourceContext* context, 164 content::ResourceContext* context,
164 int render_process_id) OVERRIDE; 165 int render_process_id) OVERRIDE;
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 // Cached version of the locale so we can return the locale on the I/O 239 // Cached version of the locale so we can return the locale on the I/O
239 // thread. 240 // thread.
240 std::string io_thread_application_locale_; 241 std::string io_thread_application_locale_;
241 242
242 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); 243 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient);
243 }; 244 };
244 245
245 } // namespace chrome 246 } // namespace chrome
246 247
247 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 248 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.cc » ('j') | chrome/browser/media/chrome_webrtc_internals.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698