diff options
Diffstat (limited to 'chrome/browser/about_flags.h')
-rw-r--r-- | chrome/browser/about_flags.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/chrome/browser/about_flags.h b/chrome/browser/about_flags.h index 780e9fb..e690bef 100644 --- a/chrome/browser/about_flags.h +++ b/chrome/browser/about_flags.h @@ -11,9 +11,12 @@ #include "base/command_line.h" -class ListValue; class PrefService; +namespace base { +class ListValue; +} + namespace about_flags { // Enumeration of OSs. @@ -87,7 +90,7 @@ struct Experiment { void ConvertFlagsToSwitches(PrefService* prefs, CommandLine* command_line); // Get a list of all available experiments. The caller owns the result. -ListValue* GetFlagsExperimentsData(PrefService* prefs); +base::ListValue* GetFlagsExperimentsData(PrefService* prefs); // Returns true if one of the experiment flags has been flipped since startup. bool IsRestartNeededToCommitChanges(); |