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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
280 void RecordURLMetric(const std::string& metric, const GURL& url) override; | 280 void RecordURLMetric(const std::string& metric, const GURL& url) override; |
281 | 281 |
282 private: | 282 private: |
283 friend class DisableWebRtcEncryptionFlagTest; | 283 friend class DisableWebRtcEncryptionFlagTest; |
284 | 284 |
285 #if defined(ENABLE_WEBRTC) | 285 #if defined(ENABLE_WEBRTC) |
286 // Copies disable WebRTC encryption switch depending on the channel. | 286 // Copies disable WebRTC encryption switch depending on the channel. |
287 static void MaybeCopyDisableWebRtcEncryptionSwitch( | 287 static void MaybeCopyDisableWebRtcEncryptionSwitch( |
288 base::CommandLine* to_command_line, | 288 base::CommandLine* to_command_line, |
289 const base::CommandLine& from_command_line, | 289 const base::CommandLine& from_command_line, |
290 VersionInfo::Channel channel); | 290 version_info::Channel channel); |
291 #endif | 291 #endif |
292 | 292 |
293 void FileSystemAccessed( | 293 void FileSystemAccessed( |
294 const GURL& url, | 294 const GURL& url, |
295 const std::vector<std::pair<int, int> >& render_frames, | 295 const std::vector<std::pair<int, int> >& render_frames, |
296 base::Callback<void(bool)> callback, | 296 base::Callback<void(bool)> callback, |
297 bool allow); | 297 bool allow); |
298 | 298 |
299 #if defined(ENABLE_EXTENSIONS) | 299 #if defined(ENABLE_EXTENSIONS) |
300 void GuestPermissionRequestHelper( | 300 void GuestPermissionRequestHelper( |
(...skipping 25 matching lines...) Expand all Loading... |
326 std::vector<ChromeContentBrowserClientParts*> extra_parts_; | 326 std::vector<ChromeContentBrowserClientParts*> extra_parts_; |
327 | 327 |
328 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; | 328 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; |
329 | 329 |
330 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 330 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
331 }; | 331 }; |
332 | 332 |
333 } // namespace chrome | 333 } // namespace chrome |
334 | 334 |
335 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 335 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |