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

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

Issue 1542413002: Switch to standard integer types in chrome/browser/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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_BROWSER_FIELD_TRIALS_H_ 5 #ifndef CHROME_BROWSER_CHROME_BROWSER_FIELD_TRIALS_H_
6 #define CHROME_BROWSER_CHROME_BROWSER_FIELD_TRIALS_H_ 6 #define CHROME_BROWSER_CHROME_BROWSER_FIELD_TRIALS_H_
7 7
8 #include "base/basictypes.h"
9 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/macros.h"
10 10
11 namespace base { 11 namespace base {
12 class Time; 12 class Time;
13 } 13 }
14 14
15 class ChromeBrowserFieldTrials { 15 class ChromeBrowserFieldTrials {
16 public: 16 public:
17 explicit ChromeBrowserFieldTrials(const base::CommandLine& command_line); 17 explicit ChromeBrowserFieldTrials(const base::CommandLine& command_line);
18 ~ChromeBrowserFieldTrials(); 18 ~ChromeBrowserFieldTrials();
19 19
20 void SetupFieldTrials(); 20 void SetupFieldTrials();
21 21
22 private: 22 private:
23 // Instantiates dynamic trials by querying their state, to ensure they get 23 // Instantiates dynamic trials by querying their state, to ensure they get
24 // reported as used. 24 // reported as used.
25 void InstantiateDynamicTrials(); 25 void InstantiateDynamicTrials();
26 26
27 const base::CommandLine& parsed_command_line_; 27 const base::CommandLine& parsed_command_line_;
28 28
29 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserFieldTrials); 29 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserFieldTrials);
30 }; 30 };
31 31
32 #endif // CHROME_BROWSER_CHROME_BROWSER_FIELD_TRIALS_H_ 32 #endif // CHROME_BROWSER_CHROME_BROWSER_FIELD_TRIALS_H_
OLDNEW
« no previous file with comments | « chrome/browser/chrome_browser_application_mac_unittest.mm ('k') | chrome/browser/chrome_browser_field_trials.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698