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

Side by Side Diff: ppapi/cpp/dev/scriptable_object_deprecated.h

Issue 13220002: [PPAPI] Fix a bunch of spelling mistakes (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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ppapi/cpp/dev/file_chooser_dev.h ('k') | ppapi/cpp/dev/scriptable_object_deprecated.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef PPAPI_CPP_SCRIPTABLE_OBJECT_DEPRECATED_H_ 5 #ifndef PPAPI_CPP_SCRIPTABLE_OBJECT_DEPRECATED_H_
6 #define PPAPI_CPP_SCRIPTABLE_OBJECT_DEPRECATED_H_ 6 #define PPAPI_CPP_SCRIPTABLE_OBJECT_DEPRECATED_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 struct PPP_Class_Deprecated; 10 struct PPP_Class_Deprecated;
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 // The default implementation sets an exception that the method does not 73 // The default implementation sets an exception that the method does not
74 // exist. 74 // exist.
75 virtual Var Construct(const std::vector<Var>& args, 75 virtual Var Construct(const std::vector<Var>& args,
76 Var* exception); 76 Var* exception);
77 77
78 private: 78 private:
79 friend class ::pp::Var; 79 friend class ::pp::Var;
80 friend class ::pp::VarPrivate; 80 friend class ::pp::VarPrivate;
81 static const PPP_Class_Deprecated* GetClass(); 81 static const PPP_Class_Deprecated* GetClass();
82 82
83 // Unimplemented, copy and assigmnent is not allowed. 83 // Unimplemented, copy and assignment is not allowed.
84 ScriptableObject(const ScriptableObject& other); 84 ScriptableObject(const ScriptableObject& other);
85 ScriptableObject& operator=(const ScriptableObject& other); 85 ScriptableObject& operator=(const ScriptableObject& other);
86 }; 86 };
87 87
88 } // namespace deprecated 88 } // namespace deprecated
89 89
90 } // namespace pp 90 } // namespace pp
91 91
92 #endif // PPAPI_CPP_SCRIPTABLE_OBJECT_DEPRECATED_H_ 92 #endif // PPAPI_CPP_SCRIPTABLE_OBJECT_DEPRECATED_H_
93 93
OLDNEW
« no previous file with comments | « ppapi/cpp/dev/file_chooser_dev.h ('k') | ppapi/cpp/dev/scriptable_object_deprecated.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698