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

Unified Diff: chrome/browser/chromeos/stub_cros_settings_provider.h

Issue 10824112: Move Chrome OS device settings stuff to chrome/browser/chromeos/settings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 8 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/chromeos/stub_cros_settings_provider.h
diff --git a/chrome/browser/chromeos/stub_cros_settings_provider.h b/chrome/browser/chromeos/stub_cros_settings_provider.h
deleted file mode 100644
index e89578b781507783f46a48646723a7b088a1f230..0000000000000000000000000000000000000000
--- a/chrome/browser/chromeos/stub_cros_settings_provider.h
+++ /dev/null
@@ -1,49 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_BROWSER_CHROMEOS_STUB_CROS_SETTINGS_PROVIDER_H_
-#define CHROME_BROWSER_CHROMEOS_STUB_CROS_SETTINGS_PROVIDER_H_
-
-#include <string>
-
-#include "chrome/browser/chromeos/cros_settings_provider.h"
-#include "chrome/browser/prefs/pref_value_map.h"
-
-namespace chromeos {
-
-class CrosSettings;
-
-// CrosSettingsProvider implementation that stores settings in memory unsigned.
-class StubCrosSettingsProvider : public CrosSettingsProvider {
- public:
- explicit StubCrosSettingsProvider(const NotifyObserversCallback& notify_cb);
- StubCrosSettingsProvider();
- virtual ~StubCrosSettingsProvider();
-
- // CrosSettingsProvider implementation.
- virtual const base::Value* Get(const std::string& path) const OVERRIDE;
- virtual TrustedStatus PrepareTrustedValues(
- const base::Closure& callback) OVERRIDE;
- virtual bool HandlesSetting(const std::string& path) const OVERRIDE;
- virtual void Reload() OVERRIDE;
-
- private:
- // CrosSettingsProvider implementation:
- virtual void DoSet(const std::string& path,
- const base::Value& value) OVERRIDE;
-
- // Initializes settings to their defaults.
- void SetDefaults();
-
- // In-memory settings storage.
- PrefValueMap values_;
-
- CrosSettings* cros_settings_;
-
- DISALLOW_COPY_AND_ASSIGN(StubCrosSettingsProvider);
-};
-
-} // namespace chromeos
-
-#endif // CHROME_BROWSER_CHROMEOS_STUB_CROS_SETTINGS_PROVIDER_H_
« no previous file with comments | « chrome/browser/chromeos/signed_settings_migration_helper.cc ('k') | chrome/browser/chromeos/stub_cros_settings_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698