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

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

Issue 7775008: Enable sync for the settings from the Extension Settings API. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Reordering Created 9 years, 4 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_storage_unittest.cc
diff --git a/chrome/browser/extensions/extension_settings_storage_unittest.cc b/chrome/browser/extensions/extension_settings_storage_unittest.cc
index ccbbf16037d1c3e968669c270ed8ede16f226c8b..a7a2d12dc2b551ac585c52a798d3902d2e4290bb 100644
--- a/chrome/browser/extensions/extension_settings_storage_unittest.cc
+++ b/chrome/browser/extensions/extension_settings_storage_unittest.cc
@@ -37,9 +37,9 @@ class AssertEqualsCallback : public ExtensionSettingsStorage::Callback {
called_ = true;
if (expected_ == NULL) {
ASSERT_TRUE(actual == NULL) << "Values are different:\n" <<
- "Line: " << line_ << "\n" <<
- "Expected: NULL\n" <<
- "Got: " << GetJson(actual);
+ "Line: " << line_ << "\n" <<
+ "Expected: NULL\n" <<
+ "Got: " << GetJson(actual);
} else {
ASSERT_TRUE(expected_->Equals(actual)) << "Values are different:\n" <<
"Line: " << line_ << "\n" <<
@@ -147,7 +147,7 @@ void ExtensionSettingsStorageTest::TearDown() {
}
void ExtensionSettingsStorageTest::SetStorage(
- ExtensionSettingsStorage* storage) {
+ SyncableExtensionSettingsStorage* storage) {
storage_ = storage;
}

Powered by Google App Engine
This is Rietveld 408576698