| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/extensions/settings/policy_value_store.h" | 5 #include "chrome/browser/extensions/api/storage/policy_value_store.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/values.h" | 8 #include "base/values.h" |
| 9 #include "chrome/browser/extensions/settings/settings_namespace.h" | 9 #include "chrome/browser/extensions/api/storage/settings_namespace.h" |
| 10 #include "chrome/browser/policy/policy_map.h" | 10 #include "chrome/browser/policy/policy_map.h" |
| 11 #include "chrome/browser/policy/policy_types.h" | 11 #include "chrome/browser/policy/policy_types.h" |
| 12 #include "chrome/browser/value_store/value_store_change.h" | 12 #include "chrome/browser/value_store/value_store_change.h" |
| 13 #include "content/public/browser/browser_thread.h" | 13 #include "content/public/browser/browser_thread.h" |
| 14 | 14 |
| 15 using content::BrowserThread; | 15 using content::BrowserThread; |
| 16 | 16 |
| 17 namespace extensions { | 17 namespace extensions { |
| 18 | 18 |
| 19 namespace { | 19 namespace { |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 ValueStore::WriteResult PolicyValueStore::Remove( | 154 ValueStore::WriteResult PolicyValueStore::Remove( |
| 155 const std::vector<std::string>& keys) { | 155 const std::vector<std::string>& keys) { |
| 156 return WriteResultError(); | 156 return WriteResultError(); |
| 157 } | 157 } |
| 158 | 158 |
| 159 ValueStore::WriteResult PolicyValueStore::Clear() { | 159 ValueStore::WriteResult PolicyValueStore::Clear() { |
| 160 return WriteResultError(); | 160 return WriteResultError(); |
| 161 } | 161 } |
| 162 | 162 |
| 163 } // namespace extensions | 163 } // namespace extensions |
| OLD | NEW |