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

Unified Diff: webkit/plugins/npapi/webplugin_delegate_impl_mac.mm

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_delegate_impl_mac.mm
diff --git a/webkit/plugins/npapi/webplugin_delegate_impl_mac.mm b/webkit/plugins/npapi/webplugin_delegate_impl_mac.mm
index e8594f8f5726c9a8f2fa7afe0c20b0f1f57f74f6..1ecbc8537679c651410172f1f3ed3db287dd1000 100644
--- a/webkit/plugins/npapi/webplugin_delegate_impl_mac.mm
+++ b/webkit/plugins/npapi/webplugin_delegate_impl_mac.mm
@@ -229,7 +229,8 @@ bool WebPluginDelegateImpl::PlatformInitialize() {
// that behavior here.
const WebPluginInfo& plugin_info =
instance_->plugin_lib()->plugin_info();
- if (plugin_info.name.find(ASCIIToUTF16("Flash")) != string16::npos)
+ if (plugin_info.name.find(ASCIIToUTF16("Flash")) !=
+ base::string16::npos)
gpu_preference = gfx::PreferIntegratedGpu;
surface_ = plugin_->GetAcceleratedSurface(gpu_preference);
@@ -615,7 +616,8 @@ void WebPluginDelegateImpl::WindowFrameChanged(const gfx::Rect& window_frame,
SetContentAreaOrigin(gfx::Point(view_frame.x(), view_frame.y()));
}
-void WebPluginDelegateImpl::ImeCompositionCompleted(const string16& text) {
+void WebPluginDelegateImpl::ImeCompositionCompleted(
+ const base::string16& text) {
ime_enabled_ = false;
// If |text| is empty this was just called to tell us composition was

Powered by Google App Engine
This is Rietveld 408576698