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

Side by Side Diff: chrome/browser/history/history_field_trial.h

Issue 8379009: Add a field trial for using lower sqlite cache sizes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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
Property Changes:
Added: svn:eol-style
+ LF
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_HISTORY_HISTORY_FIELD_TRIAL_H_
6 #define CHROME_BROWSER_HISTORY_HISTORY_FIELD_TRIAL_H_
7
Scott Hess - ex-Googler 2011/10/28 23:18:19 #pragma once ???
8 #include <string>
9
10 namespace history {
11
12 class HistoryFieldTrial {
13 public:
14 static void Activate();
15
16 // Returns true if history should try to use less memory.
17 static bool IsLowMemFieldTrial();
18
19 // Returns the group name as a suffix to append to histogram names for the
20 // current field trial, or the empty string if none.
21 static std::string GetGroupSuffix();
22 };
23
24 } // namespace history
25
26 #endif // CHROME_BROWSER_HISTORY_HISTORY_FIELD_TRIAL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698