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

Unified Diff: chrome/browser/extensions/extension_settings_cached_leveldb_storage_unittest.cc

Issue 7977018: Enable sync for the settings from the Extension Settings API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix race condition in ExtensionSettingsUIWrapper::Core Created 9 years, 3 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/extensions/extension_settings_cached_leveldb_storage_unittest.cc
diff --git a/chrome/browser/extensions/extension_settings_cached_leveldb_storage_unittest.cc b/chrome/browser/extensions/extension_settings_cached_leveldb_storage_unittest.cc
index 765081acdf887e10df7f9f8ea0a24f03c45335e6..6ae82fcedc1274fd82842dcbbfd1b8aa90d52dfa 100644
--- a/chrome/browser/extensions/extension_settings_cached_leveldb_storage_unittest.cc
+++ b/chrome/browser/extensions/extension_settings_cached_leveldb_storage_unittest.cc
@@ -7,8 +7,8 @@
namespace {
ExtensionSettingsStorage* Param(
- ExtensionSettings* settings, const std::string& extension_id) {
- return settings->GetStorageForTesting(
+ const ExtensionSettings& settings, const std::string& extension_id) {
+ return settings.GetStorageForTesting(
ExtensionSettingsStorage::LEVELDB, true, extension_id);
}

Powered by Google App Engine
This is Rietveld 408576698