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

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

Issue 7747043: WORK IN PROGRESS. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Small change 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 8096e21ccd355ba7511b80ddff6781850c650bac..ebb0d146319a901167c23c39a0d34e94d12ffaa6 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