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

Unified Diff: chrome/browser/chromeos/cros_settings.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
« no previous file with comments | « chrome/browser/chromeos/cros/network_library.h ('k') | chrome/browser/chromeos/cros_settings_provider.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/cros_settings.h
===================================================================
--- chrome/browser/chromeos/cros_settings.h (revision 92173)
+++ chrome/browser/chromeos/cros_settings.h (working copy)
@@ -18,10 +18,9 @@
namespace base {
template <typename T> struct DefaultLazyInstanceTraits;
+class Value;
}
-class Value;
-
namespace chromeos {
class CrosSettingsProvider;
@@ -37,14 +36,14 @@
// Sets |in_value| to given |path| in cros settings.
// Note that this takes ownership of |in_value|.
- void Set(const std::string& path, Value* in_value);
+ void Set(const std::string& path, base::Value* in_value);
// Fires system setting change notification.
void FireObservers(const char* path);
// Gets settings value of given |path| to |out_value|.
// Note that the caller owns |out_value| returned.
- bool Get(const std::string& path, Value** out_value) const;
+ bool Get(const std::string& path, base::Value** out_value) const;
// Convenience forms of Set(). These methods will replace any existing
// value at that path, even if it has a different type.
« no previous file with comments | « chrome/browser/chromeos/cros/network_library.h ('k') | chrome/browser/chromeos/cros_settings_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698