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

Unified Diff: content/public/common/context_menu_params.h

Issue 102593002: Convert string16 to base::string16 in content. (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 | « content/public/common/content_client.cc ('k') | content/public/common/file_chooser_params.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/context_menu_params.h
diff --git a/content/public/common/context_menu_params.h b/content/public/common/context_menu_params.h
index 49bd74f61f28f7ba0b523571ffcb744b36948e63..fe91439ac2c739cf7fea1c0f3a1346d743be864d 100644
--- a/content/public/common/context_menu_params.h
+++ b/content/public/common/context_menu_params.h
@@ -62,7 +62,7 @@ struct CONTENT_EXPORT ContextMenuParams {
// The text associated with the link. May be an empty string if the contents
// of the link are an image.
// Will be empty if link_url is empty.
- string16 link_text;
+ base::string16 link_text;
// The link URL to be used ONLY for "copy link address". We don't validate
// this field in the frontend process.
@@ -99,11 +99,11 @@ struct CONTENT_EXPORT ContextMenuParams {
int media_flags;
// This is the text of the selection that the context menu was invoked on.
- string16 selection_text;
+ base::string16 selection_text;
// The misspelled word under the cursor, if any. Used to generate the
// |dictionary_suggestions| list.
- string16 misspelled_word;
+ base::string16 misspelled_word;
// The identifier of the misspelling under the cursor, if any.
uint32 misspelling_hash;
@@ -113,7 +113,7 @@ struct CONTENT_EXPORT ContextMenuParams {
// by intercepting ViewHostMsg_ContextMenu in ResourceMessageFilter
// and populating dictionary_suggestions if the type is EDITABLE
// and the misspelled_word is not empty.
- std::vector<string16> dictionary_suggestions;
+ std::vector<base::string16> dictionary_suggestions;
// If editable, flag for whether node is speech-input enabled.
bool speech_input_enabled;
« no previous file with comments | « content/public/common/content_client.cc ('k') | content/public/common/file_chooser_params.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698