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

Unified Diff: webkit/plugins/npapi/webplugin_ime_win.h

Issue 13219005: Replace string16 with base::string16 in src/webkit (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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
Index: webkit/plugins/npapi/webplugin_ime_win.h
diff --git a/webkit/plugins/npapi/webplugin_ime_win.h b/webkit/plugins/npapi/webplugin_ime_win.h
index 123231d68fbaee8eab1889d636bffd0bdcb30acd..a5589a14e18f6c541818121fcb225b0723b0f0fe 100644
--- a/webkit/plugins/npapi/webplugin_ime_win.h
+++ b/webkit/plugins/npapi/webplugin_ime_win.h
@@ -9,7 +9,7 @@
#include <vector>
#include "base/basictypes.h"
-#include "base/string16.h"
+#include "base/string16.h.h"
#include "third_party/npapi/bindings/npapi.h"
#include "ui/gfx/rect.h"
@@ -51,7 +51,7 @@ class PluginInstance;
//
// WebPluginIMEWin ime;
// ...
-// string16 text = "composing";
+// base::string16 text = "composing";
// std::vector<int> clauses;
// clauses.push_back(0);
// clauses.push_back(text.length());
@@ -59,7 +59,7 @@ class PluginInstance;
// ime.CompositionUpdated(text, clauses, target, text.length());
// ime.SendEvents(instance());
//
-// string16 result = "result";
+// base::string16 result = "result";
// ime.CompositionCompleted(result);
// ime.SendEvents(instance());
//
@@ -94,11 +94,11 @@ class WebPluginIMEWin {
// mapped to two or more Windows events and it is not so trivial to send these
// Windows events to a plug-in. This function inserts Windows events in the
// order expected by a plug-in.
- void CompositionUpdated(const string16& text,
+ void CompositionUpdated(const base::string16& text,
std::vector<int> clauses,
std::vector<int> target,
int cursor_position);
- void CompositionCompleted(const string16& text);
+ void CompositionCompleted(const base::string16& text);
// Send all the events added in Update() to a plug-in.
bool SendEvents(PluginInstance* instance);
@@ -141,10 +141,10 @@ class WebPluginIMEWin {
std::vector<NPEvent> events_;
// The return value for GCS_COMPSTR.
- string16 composition_text_;
+ base::string16 composition_text_;
// The return value for GCS_RESULTSTR.
- string16 result_text_;
+ base::string16 result_text_;
// The return value for GCS_COMPATTR.
std::string composition_attributes_;

Powered by Google App Engine
This is Rietveld 408576698