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

Unified Diff: content/renderer/npapi/webplugin_delegate_proxy.cc

Issue 1007443004: Plugin Power Saver: Replace all "plug-in" with "plugin" for consistency. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove terms and native_client_sdk changes. Created 5 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
« no previous file with comments | « content/public/renderer/render_process_observer.h ('k') | content/renderer/npapi/webplugin_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/npapi/webplugin_delegate_proxy.cc
diff --git a/content/renderer/npapi/webplugin_delegate_proxy.cc b/content/renderer/npapi/webplugin_delegate_proxy.cc
index 66bc36272200ff7013a3e0fa9313ca407d1ee324..8e83b86942425787225ef31806dc1242e412ed8c 100644
--- a/content/renderer/npapi/webplugin_delegate_proxy.cc
+++ b/content/renderer/npapi/webplugin_delegate_proxy.cc
@@ -311,13 +311,13 @@ bool WebPluginDelegateProxy::Initialize(
if (!info_.path.empty()) {
render_view_->GetMainRenderFrame()->PluginCrashed(
info_.path, base::kNullProcessId);
- LOG(ERROR) << "Plug-in crashed on start";
+ LOG(ERROR) << "Plugin crashed on start";
// Return true so that the plugin widget is created and we can paint the
// crashed plugin there.
return true;
}
- LOG(ERROR) << "Plug-in couldn't be found";
+ LOG(ERROR) << "Plugin couldn't be found";
return false;
}
@@ -801,7 +801,7 @@ void WebPluginDelegateProxy::ImeCompositionUpdated(
const std::vector<int>& target,
int cursor_position,
int plugin_id) {
- // Dispatch the raw IME data if this plug-in is the focused one.
+ // Dispatch the raw IME data if this plugin is the focused one.
if (instance_id_ != plugin_id)
return;
@@ -813,7 +813,7 @@ void WebPluginDelegateProxy::ImeCompositionUpdated(
void WebPluginDelegateProxy::ImeCompositionCompleted(const base::string16& text,
int plugin_id) {
- // Dispatch the IME text if this plug-in is the focused one.
+ // Dispatch the IME text if this plugin is the focused one.
if (instance_id_ != plugin_id)
return;
« no previous file with comments | « content/public/renderer/render_process_observer.h ('k') | content/renderer/npapi/webplugin_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698