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

Unified Diff: webkit/common/dom_storage/dom_storage_map.h

Issue 16415016: Move nullable_string16.h to the string subdirectory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: moar Created 7 years, 6 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/common/dom_storage/dom_storage_map.h
diff --git a/webkit/common/dom_storage/dom_storage_map.h b/webkit/common/dom_storage/dom_storage_map.h
index e827899a9c8ec43e9c97a58285d3a6159ee68bf6..fdf584b6fe5a937864b3c2b575b3abf2a30b0dd9 100644
--- a/webkit/common/dom_storage/dom_storage_map.h
+++ b/webkit/common/dom_storage/dom_storage_map.h
@@ -8,7 +8,7 @@
#include <map>
#include "base/memory/ref_counted.h"
-#include "base/nullable_string16.h"
+#include "base/strings/nullable_string16.h"
#include "base/strings/string16.h"
#include "webkit/common/dom_storage/dom_storage_types.h"
#include "webkit/common/webkit_common_export.h"
@@ -24,10 +24,10 @@ class WEBKIT_COMMON_EXPORT DomStorageMap
explicit DomStorageMap(size_t quota);
unsigned Length() const;
- NullableString16 Key(unsigned index);
- NullableString16 GetItem(const base::string16& key) const;
+ base::NullableString16 Key(unsigned index);
+ base::NullableString16 GetItem(const base::string16& key) const;
bool SetItem(const base::string16& key, const base::string16& value,
- NullableString16* old_value);
+ base::NullableString16* old_value);
bool RemoveItem(const base::string16& key, base::string16* old_value);
// Swaps this instances values_ with |map|.
« no previous file with comments | « webkit/browser/dom_storage/session_storage_database_unittest.cc ('k') | webkit/common/dom_storage/dom_storage_map.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698