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

Unified Diff: trunk/src/base/android/jni_generator/testNativesLong.golden

Issue 97313002: Revert 237947 "Android: split golden content from jni_generator_..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 1 month 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 | « trunk/src/base/android/jni_generator/testNatives.golden ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/base/android/jni_generator/testNativesLong.golden
===================================================================
--- trunk/src/base/android/jni_generator/testNativesLong.golden (revision 237955)
+++ trunk/src/base/android/jni_generator/testNativesLong.golden (working copy)
@@ -1,63 +0,0 @@
-// Copyright 2013 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.
-
-// This file is autogenerated by
-// base/android/jni_generator/jni_generator.py
-// For
-// org/chromium/TestJni
-
-#ifndef org_chromium_TestJni_JNI
-#define org_chromium_TestJni_JNI
-
-#include <jni.h>
-
-#include "base/android/jni_android.h"
-#include "base/android/scoped_java_ref.h"
-#include "base/basictypes.h"
-#include "base/logging.h"
-
-using base::android::ScopedJavaLocalRef;
-
-// Step 1: forward declarations.
-namespace {
-const char kTestJniClassPath[] = "org/chromium/TestJni";
-// Leaking this jclass as we cannot use LazyInstance from some threads.
-jclass g_TestJni_clazz = NULL;
-} // namespace
-
-// Step 2: method stubs.
-static void Destroy(JNIEnv* env, jobject obj,
- jlong nativeChromeBrowserProvider) {
- DCHECK(nativeChromeBrowserProvider) << "Destroy";
- ChromeBrowserProvider* native =
- reinterpret_cast<ChromeBrowserProvider*>(nativeChromeBrowserProvider);
- return native->Destroy(env, obj);
-}
-
-// Step 3: RegisterNatives.
-
-static bool RegisterNativesImpl(JNIEnv* env) {
-
- g_TestJni_clazz = reinterpret_cast<jclass>(env->NewGlobalRef(
- base::android::GetClass(env, kTestJniClassPath).obj()));
- static const JNINativeMethod kMethodsTestJni[] = {
- { "nativeDestroy",
-"("
-"J"
-")"
-"V", reinterpret_cast<void*>(Destroy) },
- };
- const int kMethodsTestJniSize = arraysize(kMethodsTestJni);
-
- if (env->RegisterNatives(g_TestJni_clazz,
- kMethodsTestJni,
- kMethodsTestJniSize) < 0) {
- LOG(ERROR) << "RegisterNatives failed in " << __FILE__;
- return false;
- }
-
- return true;
-}
-
-#endif // org_chromium_TestJni_JNI
« no previous file with comments | « trunk/src/base/android/jni_generator/testNatives.golden ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698