1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36

content / common / android / gin_java_bridge_errors.cc [blame]

// Copyright 2014 The Chromium Authors
// 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/notreached.h"

namespace content {

const char* GinJavaBridgeErrorToString(mojom::GinJavaBridgeError error) {
  switch (error) {
    case mojom::GinJavaBridgeError::kGinJavaBridgeNoError:
      return "No error";
    case mojom::GinJavaBridgeError::kGinJavaBridgeUnknownObjectId:
      return "Unknown Java object ID";
    case mojom::GinJavaBridgeError::kGinJavaBridgeObjectIsGone:
      return "Java object is gone";
    case mojom::GinJavaBridgeError::kGinJavaBridgeMethodNotFound:
      return "Method not found";
    case mojom::GinJavaBridgeError::
        kGinJavaBridgeAccessToObjectGetClassIsBlocked:
      return "Access to java.lang.Object.getClass is blocked";
    case mojom::GinJavaBridgeError::kGinJavaBridgeJavaExceptionRaised:
      return "Java exception was raised during method invocation";
    case mojom::GinJavaBridgeError::kGinJavaBridgeNonAssignableTypes:
      return "The type of the object passed to the method is incompatible "
          "with the type of method's argument";
    case mojom::GinJavaBridgeError::kGinJavaBridgeRenderFrameDeleted:
      return "RenderFrame has been deleted";
  }
  NOTREACHED_IN_MIGRATION();
  return "Unknown error";
}

}  // namespace content