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

Unified Diff: chrome/browser/ui/webui/options/chromeos/system_settings_provider.h

Issue 7259019: Move base/values.h into the base namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/webui/options/chromeos/system_settings_provider.h
===================================================================
--- chrome/browser/ui/webui/options/chromeos/system_settings_provider.h (revision 92173)
+++ chrome/browser/ui/webui/options/chromeos/system_settings_provider.h (working copy)
@@ -12,8 +12,10 @@
#include "chrome/browser/chromeos/system/timezone_settings.h"
#include "third_party/icu/public/i18n/unicode/timezone.h"
+namespace base {
class Value;
class ListValue;
+}
namespace chromeos {
@@ -24,18 +26,18 @@
virtual ~SystemSettingsProvider();
// CrosSettingsProvider overrides.
- virtual bool Get(const std::string& path, Value** out_value) const;
+ virtual bool Get(const std::string& path, base::Value** out_value) const;
virtual bool HandlesSetting(const std::string& path);
// Overridden from TimezoneSettings::Observer:
virtual void TimezoneChanged(const icu::TimeZone& timezone);
// Creates the map of timezones used by the options page.
- ListValue* GetTimezoneList();
+ base::ListValue* GetTimezoneList();
private:
// CrosSettingsProvider overrides.
- virtual void DoSet(const std::string& path, Value* in_value);
+ virtual void DoSet(const std::string& path, base::Value* in_value);
// Gets timezone name.
static string16 GetTimezoneName(const icu::TimeZone& timezone);

Powered by Google App Engine
This is Rietveld 408576698