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

Unified Diff: content/plugin/webplugin_delegate_stub.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/plugin/plugin_thread.cc ('k') | content/plugin/webplugin_delegate_stub.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/plugin/webplugin_delegate_stub.h
diff --git a/content/plugin/webplugin_delegate_stub.h b/content/plugin/webplugin_delegate_stub.h
index 09bcf3d392cb58fc208f641680e4fdb0b36903e2..8787f2524b18ded12debc7f8456303bf5f5f124f 100644
--- a/content/plugin/webplugin_delegate_stub.h
+++ b/content/plugin/webplugin_delegate_stub.h
@@ -79,15 +79,15 @@ class WebPluginDelegateStub : public IPC::Listener,
const std::string& result,
bool success,
int notify_id);
- void OnGetFormValue(string16* value, bool* success);
+ void OnGetFormValue(base::string16* value, bool* success);
void OnSetContentAreaFocus(bool has_focus);
#if defined(OS_WIN) && !defined(USE_AURA)
- void OnImeCompositionUpdated(const string16& text,
+ void OnImeCompositionUpdated(const base::string16& text,
const std::vector<int>& clauses,
const std::vector<int>& target,
int cursor_position);
- void OnImeCompositionCompleted(const string16& text);
+ void OnImeCompositionCompleted(const base::string16& text);
#endif
#if defined(OS_MACOSX)
void OnSetWindowFocus(bool has_focus);
@@ -96,7 +96,7 @@ class WebPluginDelegateStub : public IPC::Listener,
bool has_focus);
void OnWindowFrameChanged(const gfx::Rect& window_frame,
const gfx::Rect& view_frame);
- void OnImeCompositionCompleted(const string16& text);
+ void OnImeCompositionCompleted(const base::string16& text);
#endif
void OnDidReceiveManualResponse(
« no previous file with comments | « content/plugin/plugin_thread.cc ('k') | content/plugin/webplugin_delegate_stub.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698