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

Unified Diff: content/renderer/dom_storage/dom_storage_cached_area_unittest.cc

Issue 22297005: Move webkit/{browser,common}/dom_storage into content/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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: content/renderer/dom_storage/dom_storage_cached_area_unittest.cc
diff --git a/content/renderer/dom_storage/dom_storage_cached_area_unittest.cc b/content/renderer/dom_storage/dom_storage_cached_area_unittest.cc
index 9dcef95a9d9ca45f8507c54c28d6750e70bd0b51..40f882ebbc9f8fc7b9894dc2867c0a2369d39d29 100644
--- a/content/renderer/dom_storage/dom_storage_cached_area_unittest.cc
+++ b/content/renderer/dom_storage/dom_storage_cached_area_unittest.cc
@@ -24,7 +24,7 @@ class MockProxy : public DomStorageProxy {
// DomStorageProxy interface for use by DomStorageCachedArea.
virtual void LoadArea(int connection_id,
- dom_storage::ValuesMap* values,
+ DOMStorageValuesMap* values,
const CompletionCallback& callback) OVERRIDE {
pending_callbacks_.push_back(callback);
observed_load_area_ = true;
@@ -91,7 +91,7 @@ class MockProxy : public DomStorageProxy {
typedef std::list<CompletionCallback> CallbackList;
- dom_storage::ValuesMap load_area_return_values_;
+ DOMStorageValuesMap load_area_return_values_;
CallbackList pending_callbacks_;
bool observed_load_area_;
bool observed_set_item_;
@@ -353,4 +353,4 @@ TEST_F(DomStorageCachedAreaTest, KeyMutationsAreIgnoredUntilCompletion) {
EXPECT_FALSE(IsPrimed(cached_area.get()));
}
-} // namespace dom_storage
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698