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_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" | 8 #include "base/basictypes.h" |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/gtest_prod_util.h" | 10 #include "base/gtest_prod_util.h" |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 | 64 |
65 // Sets up the Safe Browsing interstitial redesign trial. | 65 // Sets up the Safe Browsing interstitial redesign trial. |
66 void SetUpSafeBrowsingInterstitialFieldTrial(); | 66 void SetUpSafeBrowsingInterstitialFieldTrial(); |
67 | 67 |
68 // Sets up the InfiniteCache field trial. | 68 // Sets up the InfiniteCache field trial. |
69 void SetUpInfiniteCacheFieldTrial(); | 69 void SetUpInfiniteCacheFieldTrial(); |
70 | 70 |
71 // Sets up field trials for doing Cache Sensitivity Analysis. | 71 // Sets up field trials for doing Cache Sensitivity Analysis. |
72 void SetUpCacheSensitivityAnalysisFieldTrial(); | 72 void SetUpCacheSensitivityAnalysisFieldTrial(); |
73 | 73 |
| 74 // A field trial to determine the impact of using non-blocking reads for |
| 75 // TCP sockets on Windows instead of overlapped I/O. |
| 76 void WindowsOverlappedTCPReadsFieldTrial(); |
| 77 |
74 const CommandLine& parsed_command_line_; | 78 const CommandLine& parsed_command_line_; |
75 | 79 |
76 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserFieldTrials); | 80 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserFieldTrials); |
77 }; | 81 }; |
78 | 82 |
79 #endif // CHROME_BROWSER_CHROME_BROWSER_FIELD_TRIALS_H_ | 83 #endif // CHROME_BROWSER_CHROME_BROWSER_FIELD_TRIALS_H_ |
OLD | NEW |