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

Unified Diff: webkit/dom_storage/dom_storage_context_unittest.cc

Issue 13219005: Replace string16 with base::string16 in src/webkit (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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: webkit/dom_storage/dom_storage_context_unittest.cc
diff --git a/webkit/dom_storage/dom_storage_context_unittest.cc b/webkit/dom_storage/dom_storage_context_unittest.cc
index f2bebc15c95734b317cb74b5f82d7d489d17b5ce..ec1d910b13b611779dcf456ee2fe5689dda9c29a 100644
--- a/webkit/dom_storage/dom_storage_context_unittest.cc
+++ b/webkit/dom_storage/dom_storage_context_unittest.cc
@@ -31,8 +31,8 @@ class DomStorageContextTest : public testing::Test {
}
const GURL kOrigin;
- const string16 kKey;
- const string16 kValue;
+ const base::string16 kKey;
+ const base::string16 kValue;
const bool kDontIncludeFileInfo;
const bool kDoIncludeFileInfo;
@@ -205,8 +205,8 @@ TEST_F(DomStorageContextTest, DeleteSessionStorage) {
DomStorageNamespace* dom_namespace =
context_->GetStorageNamespace(kSessionStorageNamespaceId);
DomStorageArea* area = dom_namespace->OpenStorageArea(kOrigin);
- const string16 kKey(ASCIIToUTF16("foo"));
- const string16 kValue(ASCIIToUTF16("bar"));
+ const base::string16 kKey(ASCIIToUTF16("foo"));
+ const base::string16 kValue(ASCIIToUTF16("bar"));
NullableString16 old_nullable_value;
area->SetItem(kKey, kValue, &old_nullable_value);
dom_namespace->CloseStorageArea(area);

Powered by Google App Engine
This is Rietveld 408576698