| OLD | NEW |
| 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 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 #endif | 279 #endif |
| 280 bool CheckMediaAccessPermission(content::BrowserContext* browser_context, | 280 bool CheckMediaAccessPermission(content::BrowserContext* browser_context, |
| 281 const GURL& security_origin, | 281 const GURL& security_origin, |
| 282 content::MediaStreamType type) override; | 282 content::MediaStreamType type) override; |
| 283 | 283 |
| 284 void OpenURL(content::BrowserContext* browser_context, | 284 void OpenURL(content::BrowserContext* browser_context, |
| 285 const content::OpenURLParams& params, | 285 const content::OpenURLParams& params, |
| 286 const base::Callback<void(content::WebContents*)>& callback) | 286 const base::Callback<void(content::WebContents*)>& callback) |
| 287 override; | 287 override; |
| 288 | 288 |
| 289 void SampleDomainAndRegistryFromGURL(const std::string& metric, |
| 290 const GURL& gurl) override; |
| 291 |
| 289 private: | 292 private: |
| 290 friend class DisableWebRtcEncryptionFlagTest; | 293 friend class DisableWebRtcEncryptionFlagTest; |
| 291 | 294 |
| 292 #if defined(ENABLE_WEBRTC) | 295 #if defined(ENABLE_WEBRTC) |
| 293 // Copies disable WebRTC encryption switch depending on the channel. | 296 // Copies disable WebRTC encryption switch depending on the channel. |
| 294 static void MaybeCopyDisableWebRtcEncryptionSwitch( | 297 static void MaybeCopyDisableWebRtcEncryptionSwitch( |
| 295 base::CommandLine* to_command_line, | 298 base::CommandLine* to_command_line, |
| 296 const base::CommandLine& from_command_line, | 299 const base::CommandLine& from_command_line, |
| 297 VersionInfo::Channel channel); | 300 VersionInfo::Channel channel); |
| 298 #endif | 301 #endif |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 346 std::vector<ChromeContentBrowserClientParts*> extra_parts_; | 349 std::vector<ChromeContentBrowserClientParts*> extra_parts_; |
| 347 | 350 |
| 348 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; | 351 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; |
| 349 | 352 |
| 350 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 353 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
| 351 }; | 354 }; |
| 352 | 355 |
| 353 } // namespace chrome | 356 } // namespace chrome |
| 354 | 357 |
| 355 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 358 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |