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

Unified Diff: chrome/common/render_messages.h

Issue 105473003: Add explicit base namespace to string16 users. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 | « chrome/common/print_messages.cc ('k') | chrome/common/service_process_util_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/render_messages.h
diff --git a/chrome/common/render_messages.h b/chrome/common/render_messages.h
index 8b6167e6d48c74b1a9d9afa583e70660b0fd8f01..8ac0d1b22bd72d625f511d27eae1ed45a7876933 100644
--- a/chrome/common/render_messages.h
+++ b/chrome/common/render_messages.h
@@ -141,7 +141,7 @@ IPC_STRUCT_BEGIN(ChromeViewHostMsg_GetPluginInfo_Output)
IPC_STRUCT_MEMBER(content::WebPluginInfo, plugin)
IPC_STRUCT_MEMBER(std::string, actual_mime_type)
IPC_STRUCT_MEMBER(std::string, group_identifier)
- IPC_STRUCT_MEMBER(string16, group_name)
+ IPC_STRUCT_MEMBER(base::string16, group_name)
IPC_STRUCT_END()
IPC_STRUCT_TRAITS_BEGIN(ContentSettingsPattern::PatternParts)
@@ -270,8 +270,8 @@ IPC_MESSAGE_CONTROL0(ChromeViewMsg_PurgeMemory)
// a time which is late enough to not be thrown out, and early enough to be
// before onload events are fired.
IPC_MESSAGE_ROUTED4(ChromeViewMsg_WebUIJavaScript,
- string16, /* frame_xpath */
- string16, /* jscript_url */
+ base::string16, /* frame_xpath */
+ base::string16, /* jscript_url */
int, /* ID */
bool /* If true, result is sent back. */)
@@ -328,13 +328,13 @@ IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSetSuggestionToPrefetch,
InstantSuggestion /* suggestion */)
IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSubmit,
- string16 /* value */)
+ base::string16 /* value */)
IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxThemeChanged,
ThemeBackgroundInfo /* value */)
IPC_MESSAGE_ROUTED2(ChromeViewMsg_ChromeIdentityCheckResult,
- string16 /* identity */,
+ base::string16 /* identity */,
bool /* identity_match */)
IPC_MESSAGE_ROUTED0(ChromeViewMsg_SearchBoxToggleVoiceSearch)
@@ -454,8 +454,8 @@ IPC_SYNC_MESSAGE_CONTROL5_1(ChromeViewHostMsg_AllowDatabase,
int /* render_view_id */,
GURL /* origin_url */,
GURL /* top origin url */,
- string16 /* database name */,
- string16 /* database display name */,
+ base::string16 /* database name */,
+ base::string16 /* database display name */,
bool /* allowed */)
// Sent by the renderer process to check whether access to DOM Storage is
@@ -481,7 +481,7 @@ IPC_SYNC_MESSAGE_CONTROL4_1(ChromeViewHostMsg_AllowIndexedDB,
int /* render_view_id */,
GURL /* origin_url */,
GURL /* top origin url */,
- string16 /* database name */,
+ base::string16 /* database name */,
bool /* allowed */)
// Return information about a plugin for the given URL and MIME type.
@@ -524,7 +524,7 @@ IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_RemovePluginPlaceholderHost,
// Notifies a missing plug-in placeholder that a plug-in with name |plugin_name|
// has been found.
IPC_MESSAGE_ROUTED1(ChromeViewMsg_FoundMissingPlugin,
- string16 /* plugin_name */)
+ base::string16 /* plugin_name */)
// Notifies a missing plug-in placeholder that no plug-in has been found.
IPC_MESSAGE_ROUTED0(ChromeViewMsg_DidNotFindMissingPlugin)
@@ -605,7 +605,7 @@ IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_BlockedOutdatedPlugin,
// Notifies when a plugin couldn't be loaded because it requires
// user authorization.
IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_BlockedUnauthorizedPlugin,
- string16 /* name */,
+ base::string16 /* name */,
std::string /* plug-in group identifier */)
// Provide the browser process with information about the WebCore resource
@@ -710,7 +710,7 @@ IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_LogEvent,
// The Instant page asks for Chrome identity check against |identity|.
IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_ChromeIdentityCheck,
int /* page_id */,
- string16 /* identity */)
+ base::string16 /* identity */)
// Tells InstantExtended to set the omnibox focus state.
IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_FocusOmnibox,
@@ -722,7 +722,7 @@ IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_FocusOmnibox,
// open.
IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_PasteAndOpenDropdown,
int /* page_id */,
- string16 /* text to be pasted */)
+ base::string16 /* text to be pasted */)
// Tells InstantExtended whether the embedded search API is supported.
// See http://dev.chromium.org/embeddedsearch
@@ -766,7 +766,7 @@ IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs,
// Tells listeners that a detailed message was reported to the console by
// WebKit.
IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded,
- string16 /* message */,
- string16 /* source */,
+ base::string16 /* message */,
+ base::string16 /* source */,
extensions::StackTrace /* stack trace */,
int32 /* severity level */)
« no previous file with comments | « chrome/common/print_messages.cc ('k') | chrome/common/service_process_util_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698