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

Unified Diff: chrome/common/spellcheck_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/service_process_util_win.cc ('k') | chrome/common/spellcheck_result.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/spellcheck_messages.h
diff --git a/chrome/common/spellcheck_messages.h b/chrome/common/spellcheck_messages.h
index dc794ca4af22d22e558be3dba14982cd93118e11..ac4e2f0fc9c8d0d4b18523bc38a62c5820bfb8d4 100644
--- a/chrome/common/spellcheck_messages.h
+++ b/chrome/common/spellcheck_messages.h
@@ -67,9 +67,9 @@ IPC_MESSAGE_CONTROL1(SpellCheckHostMsg_RespondDocumentMarkers,
// If the service is not available, the 4th parameter should be false and the
// 5th parameter should contain the requested sentence.
IPC_MESSAGE_ROUTED4(SpellCheckMsg_RespondSpellingService,
- int /* request identifier given by WebKit */,
- bool /* succeeded calling service */,
- string16 /* sentence */,
+ int /* request identifier given by WebKit */,
+ bool /* succeeded calling service */,
+ base::string16 /* sentence */,
std::vector<SpellCheckResult>)
#endif
@@ -97,7 +97,7 @@ IPC_MESSAGE_CONTROL0(SpellCheckHostMsg_RequestDictionary)
// Tracks spell checking occurrence to collect histogram.
IPC_MESSAGE_ROUTED2(SpellCheckHostMsg_NotifyChecked,
- string16 /* word */,
+ base::string16 /* word */,
bool /* true if checked word is misspelled */)
#if !defined(OS_MACOSX)
@@ -107,7 +107,7 @@ IPC_MESSAGE_ROUTED2(SpellCheckHostMsg_NotifyChecked,
IPC_MESSAGE_CONTROL4(SpellCheckHostMsg_CallSpellingService,
int /* route_id for response */,
int /* request identifier given by WebKit */,
- string16 /* sentence */,
+ base::string16 /* sentence */,
std::vector<SpellCheckMarker> /* markers */)
#endif
@@ -118,22 +118,22 @@ IPC_MESSAGE_ROUTED1(SpellCheckHostMsg_ShowSpellingPanel,
// Tells the browser to update the spelling panel with the given word.
IPC_MESSAGE_ROUTED1(SpellCheckHostMsg_UpdateSpellingPanelWithMisspelledWord,
- string16 /* the word to update the panel with */)
+ base::string16 /* the word to update the panel with */)
// TODO(groby): This needs to originate from SpellcheckProvider.
IPC_SYNC_MESSAGE_CONTROL2_1(SpellCheckHostMsg_CheckSpelling,
- string16 /* word */,
+ base::string16 /* word */,
int /* route_id */,
bool /* correct */)
IPC_SYNC_MESSAGE_CONTROL1_1(SpellCheckHostMsg_FillSuggestionList,
- string16 /* word */,
- std::vector<string16> /* suggestions */)
+ base::string16 /* word */,
+ std::vector<base::string16> /* suggestions */)
IPC_MESSAGE_CONTROL4(SpellCheckHostMsg_RequestTextCheck,
int /* route_id for response */,
int /* request identifier given by WebKit */,
- string16 /* sentence */,
+ base::string16 /* sentence */,
std::vector<SpellCheckMarker> /* markers */)
IPC_MESSAGE_ROUTED2(SpellCheckHostMsg_ToggleSpellCheck,
« no previous file with comments | « chrome/common/service_process_util_win.cc ('k') | chrome/common/spellcheck_result.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698