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

Side by Side Diff: chrome/browser/trials/throttling_trial.h

Issue 7027040: Implement A/B experiment for anti-DDoS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address review comments. Created 9 years, 6 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 | Annotate | Revision Log
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698