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

Unified Diff: gin/arguments.h

Issue 103703002: Gin: Add support for binding JS methods to C++ instance methods. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase again Created 7 years 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: gin/arguments.h
diff --git a/gin/arguments.h b/gin/arguments.h
index 8be9bc399dbd8812a55690f00946dbfd8f4844ee..1461dc8690f2c5c539cacaac958ba116ccf7bc8b 100644
--- a/gin/arguments.h
+++ b/gin/arguments.h
@@ -20,8 +20,7 @@ class Arguments {
~Arguments();
template<typename T>
- // TODO(aa): Rename GetHolder().
- bool Holder(T* out) {
+ bool GetHolder(T* out) {
return ConvertFromV8(isolate_, info_->Holder(), out);
}
@@ -75,9 +74,6 @@ class Arguments {
bool insufficient_arguments_;
};
-template<>
-bool Arguments::GetNext<Arguments>(Arguments* out);
-
} // namespace gin
#endif // GIN_ARGUMENTS_H_
« no previous file with comments | « base/template_util_unittest.cc ('k') | gin/arguments.cc » ('j') | gin/object_template_builder.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698