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

Unified Diff: remoting/client/plugin/chromoting_scriptable_object.h

Issue 3078005: Rename ChromotingPlugin -> ChromotingInstance to be more consistent with... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 4 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 | « remoting/client/plugin/chromoting_plugin.cc ('k') | remoting/client/plugin/chromoting_scriptable_object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/plugin/chromoting_scriptable_object.h
===================================================================
--- remoting/client/plugin/chromoting_scriptable_object.h (revision 55094)
+++ remoting/client/plugin/chromoting_scriptable_object.h (working copy)
@@ -2,11 +2,11 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-// This implements the JavaScript class entrypoint for the plugin.
+// This implements the JavaScript class entrypoint for the plugin instance.
// The Javascript API is defined as follows.
//
// interface ChromotingScriptableObject {
-// // Called when the Chromoting plugin has had a state change such as
+// // Called when the Chromoting instance has had a state change such as
// // connection completed.
// attribute Function onreadystatechange;
//
@@ -38,11 +38,11 @@
namespace remoting {
-class ChromotingPlugin;
+class ChromotingInstance;
class ChromotingScriptableObject : public pp::ScriptableObject {
public:
- explicit ChromotingScriptableObject(ChromotingPlugin* instance);
+ explicit ChromotingScriptableObject(ChromotingInstance* instance);
virtual ~ChromotingScriptableObject();
virtual void Init();
@@ -92,7 +92,7 @@
PropertyNameMap property_names_;
std::vector<PropertyDescriptor> properties_;
- ChromotingPlugin* instance_;
+ ChromotingInstance* instance_;
};
} // namespace remoting
« no previous file with comments | « remoting/client/plugin/chromoting_plugin.cc ('k') | remoting/client/plugin/chromoting_scriptable_object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698