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

Unified Diff: content/renderer/java/gin_java_function_invocation_helper.h

Issue 1018413002: [Android] Fix method invocation and wrappers cleanup handling in Java Bridge (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added a dedicated test for attempting to call a non-existing method via `call` 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
Index: content/renderer/java/gin_java_function_invocation_helper.h
diff --git a/content/renderer/java/gin_java_function_invocation_helper.h b/content/renderer/java/gin_java_function_invocation_helper.h
new file mode 100644
index 0000000000000000000000000000000000000000..edf34d378e373f144cd818a762d5e563dc783093
--- /dev/null
+++ b/content/renderer/java/gin_java_function_invocation_helper.h
@@ -0,0 +1,37 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_RENDERER_JAVA_GIN_JAVA_FUNCTION_INVOCATION_HELPER_H_
+#define CONTENT_RENDERER_JAVA_GIN_JAVA_FUNCTION_INVOCATION_HELPER_H_
+
+#include "base/memory/scoped_ptr.h"
+#include "base/memory/weak_ptr.h"
+#include "content/renderer/java/gin_java_bridge_dispatcher.h"
+#include "gin/arguments.h"
+#include "gin/handle.h"
+
+namespace content {
+
+class GinJavaBridgeValueConverter;
+
+class GinJavaFunctionInvocationHelper {
+ public:
+ GinJavaFunctionInvocationHelper(
+ const std::string& method_name,
+ const base::WeakPtr<GinJavaBridgeDispatcher>& dispatcher);
+ ~GinJavaFunctionInvocationHelper();
+
+ v8::Handle<v8::Value> Invoke(gin::Arguments* args);
+
+ private:
+ std::string method_name_;
+ base::WeakPtr<GinJavaBridgeDispatcher> dispatcher_;
+ scoped_ptr<GinJavaBridgeValueConverter> converter_;
+
+ DISALLOW_COPY_AND_ASSIGN(GinJavaFunctionInvocationHelper);
+};
+
+} // namespace content
+
+#endif // CONTENT_RENDERER_JAVA_GIN_JAVA_FUNCTION_INVOCATION_HELPER_H_
« no previous file with comments | « content/renderer/java/gin_java_bridge_object.cc ('k') | content/renderer/java/gin_java_function_invocation_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698