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

Unified Diff: content/browser/dom_storage/dom_storage_message_filter.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 | « base/strings/nullable_string16.h ('k') | content/browser/dom_storage/dom_storage_message_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/dom_storage/dom_storage_message_filter.h
diff --git a/content/browser/dom_storage/dom_storage_message_filter.h b/content/browser/dom_storage/dom_storage_message_filter.h
index 9bee6d84f62cb4e03e1efd3fb1c9cb73fb48dc8a..cc6ec3523d96ebf2a49786afbc4254f7ed4ed9a6 100644
--- a/content/browser/dom_storage/dom_storage_message_filter.h
+++ b/content/browser/dom_storage/dom_storage_message_filter.h
@@ -12,7 +12,10 @@
#include "webkit/common/dom_storage/dom_storage_types.h"
class GURL;
+
+namespace base {
class NullableString16;
+}
namespace dom_storage {
class DomStorageArea;
@@ -63,7 +66,7 @@ class DOMStorageMessageFilter
const dom_storage::DomStorageArea* area,
const string16& key,
const string16& new_value,
- const NullableString16& old_value,
+ const base::NullableString16& old_value,
const GURL& page_url) OVERRIDE;
virtual void OnDomStorageItemRemoved(
const dom_storage::DomStorageArea* area,
@@ -77,9 +80,9 @@ class DOMStorageMessageFilter
void SendDomStorageEvent(
const dom_storage::DomStorageArea* area,
const GURL& page_url,
- const NullableString16& key,
- const NullableString16& new_value,
- const NullableString16& old_value);
+ const base::NullableString16& key,
+ const base::NullableString16& new_value,
+ const base::NullableString16& old_value);
scoped_refptr<dom_storage::DomStorageContext> context_;
scoped_ptr<dom_storage::DomStorageHost> host_;
« no previous file with comments | « base/strings/nullable_string16.h ('k') | content/browser/dom_storage/dom_storage_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698