OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROME_BROWSER_TRIALS_THROTTLING_TRIAL_H_ | |
6 #define CHROME_BROWSER_TRIALS_THROTTLING_TRIAL_H_ | |
7 #pragma once | |
8 | |
9 #include <string> | |
wtc
2011/06/10 22:31:00
Nit: no need to include <string> because this head
Jói
2011/06/13 17:27:14
Done.
| |
10 | |
11 class PrefService; | |
12 | |
13 namespace throttling_trial { | |
wtc
2011/06/10 22:31:00
Nit: it seems better to name the namespace http_th
Jói
2011/06/13 17:27:14
I went with Jim's suggestion to remove the namespa
| |
14 | |
15 // Creates the trial. | |
16 void CreateTrial(PrefService* prefs); | |
jar (doing other things)
2011/06/12 06:49:12
This seems strange. You're declaring a namespace
Jói
2011/06/13 17:27:14
You're absolutely right, thanks for pointing this
| |
17 | |
18 } // namespace throttling_trial | |
19 | |
20 #endif // CHROME_BROWSER_TRIALS_THROTTLING_TRIAL_H_ | |
OLD | NEW |