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

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

Issue 1257633002: Componentize VersionInfo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Convert version_info::Channel to a "class enum" Created 5 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
« no previous file with comments | « chrome/browser/chrome_browser_main.cc ('k') | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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_
OLDNEW
« no previous file with comments | « chrome/browser/chrome_browser_main.cc ('k') | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698