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

Unified Diff: webkit/renderer/dom_storage/dom_storage_cached_area.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
« no previous file with comments | « webkit/common/webdropdata.cc ('k') | webkit/renderer/dom_storage/dom_storage_cached_area.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/renderer/dom_storage/dom_storage_cached_area.h
diff --git a/webkit/renderer/dom_storage/dom_storage_cached_area.h b/webkit/renderer/dom_storage/dom_storage_cached_area.h
index 4cac9c4f1ca0e0d2fbe979bbff0778fa2021f113..c4f075b61170588ace04ba426eb5b53069647ab7 100644
--- a/webkit/renderer/dom_storage/dom_storage_cached_area.h
+++ b/webkit/renderer/dom_storage/dom_storage_cached_area.h
@@ -9,7 +9,7 @@
#include "base/memory/ref_counted.h"
#include "base/memory/weak_ptr.h"
-#include "base/nullable_string16.h"
+#include "base/strings/nullable_string16.h"
#include "googleurl/src/gurl.h"
#include "webkit/storage/webkit_storage_export.h"
@@ -34,8 +34,8 @@ class WEBKIT_STORAGE_EXPORT DomStorageCachedArea :
const GURL& origin() const { return origin_; }
unsigned GetLength(int connection_id);
- NullableString16 GetKey(int connection_id, unsigned index);
- NullableString16 GetItem(int connection_id, const base::string16& key);
+ base::NullableString16 GetKey(int connection_id, unsigned index);
+ base::NullableString16 GetItem(int connection_id, const base::string16& key);
bool SetItem(int connection_id,
const base::string16& key,
const base::string16& value,
@@ -44,8 +44,8 @@ class WEBKIT_STORAGE_EXPORT DomStorageCachedArea :
const GURL& page_url);
void Clear(int connection_id, const GURL& page_url);
- void ApplyMutation(const NullableString16& key,
- const NullableString16& new_value);
+ void ApplyMutation(const base::NullableString16& key,
+ const base::NullableString16& new_value);
size_t MemoryBytesUsedByCache() const;
« no previous file with comments | « webkit/common/webdropdata.cc ('k') | webkit/renderer/dom_storage/dom_storage_cached_area.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698