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

Unified Diff: content/common/android/gin_java_bridge_errors.cc

Issue 345753003: [Android] Java Bridge with Gin: implement Java Bridge dispatcher (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use an enum for passing error codes Created 6 years, 6 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/common/android/gin_java_bridge_errors.h ('k') | content/common/gin_java_bridge_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/android/gin_java_bridge_errors.cc
diff --git a/content/common/android/gin_java_bridge_errors.cc b/content/common/android/gin_java_bridge_errors.cc
new file mode 100644
index 0000000000000000000000000000000000000000..7a80801510266a1706e6306b16249fb3f1628c52
--- /dev/null
+++ b/content/common/android/gin_java_bridge_errors.cc
@@ -0,0 +1,30 @@
+// Copyright 2014 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.
+
+#include "content/common/android/gin_java_bridge_errors.h"
+
+#include "base/logging.h"
+
+namespace content {
+
+const char* GinJavaBridgeErrorToString(GinJavaBridgeError error) {
+ switch (error) {
+ case kGinJavaBridgeNoError:
+ return "No error";
+ case kGinJavaBridgeUnknownObjectId:
+ return "Unknown Java object ID";
+ case kGinJavaBridgeObjectIsGone:
+ return "Java object is gone";
+ case kGinJavaBridgeMethodNotFound:
+ return "Method not found";
+ case kGinJavaBridgeAccessToObjectGetClassIsBlocked:
+ return "Access to java.lang.Object.getClass is blocked";
+ case kGinJavaBridgeJavaExceptionRaised:
+ return "Java exception was raised during method invocation";
+ }
+ NOTREACHED();
+ return "Unknown error";
+}
+
+} // namespace content
« no previous file with comments | « content/common/android/gin_java_bridge_errors.h ('k') | content/common/gin_java_bridge_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698