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

Unified Diff: content/common/dom_storage_messages.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 | « content/child/indexed_db/indexed_db_dispatcher.h ('k') | ipc/ipc_message_utils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/dom_storage_messages.h
diff --git a/content/common/dom_storage_messages.h b/content/common/dom_storage_messages.h
index 73c508eacc3f9bba8f9f962ca2f536b6cf4bd22c..689c80b9a75deaca65c2a385f452a391960b1ab3 100644
--- a/content/common/dom_storage_messages.h
+++ b/content/common/dom_storage_messages.h
@@ -15,13 +15,13 @@
// Signals a local storage event.
IPC_STRUCT_BEGIN(DOMStorageMsg_Event_Params)
// The key that generated the storage event. Null if clear() was called.
- IPC_STRUCT_MEMBER(NullableString16, key)
+ IPC_STRUCT_MEMBER(base::NullableString16, key)
// The old value of this key. Null on clear() or if it didn't have a value.
- IPC_STRUCT_MEMBER(NullableString16, old_value)
+ IPC_STRUCT_MEMBER(base::NullableString16, old_value)
// The new value of this key. Null on removeItem() or clear().
- IPC_STRUCT_MEMBER(NullableString16, new_value)
+ IPC_STRUCT_MEMBER(base::NullableString16, new_value)
// The origin this is associated with.
IPC_STRUCT_MEMBER(GURL, origin)
« no previous file with comments | « content/child/indexed_db/indexed_db_dispatcher.h ('k') | ipc/ipc_message_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698