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

Side by Side Diff: content/shell/browser/shell_android.cc

Issue 1312153003: jni_generator: Pass object parameters as JavaParamRef. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 3 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/shell/browser/shell.h" 5 #include "content/shell/browser/shell.h"
6 6
7 #include <jni.h> 7 #include <jni.h>
8 8
9 #include "base/android/jni_string.h" 9 #include "base/android/jni_string.h"
10 #include "base/android/scoped_java_ref.h" 10 #include "base/android/scoped_java_ref.h"
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 RemoveShellView(java_object_.obj()); 97 RemoveShellView(java_object_.obj());
98 delete this; 98 delete this;
99 } 99 }
100 100
101 // static 101 // static
102 bool Shell::Register(JNIEnv* env) { 102 bool Shell::Register(JNIEnv* env) {
103 return RegisterNativesImpl(env); 103 return RegisterNativesImpl(env);
104 } 104 }
105 105
106 // static 106 // static
107 void CloseShell(JNIEnv* env, jclass clazz, jlong shellPtr) { 107 void CloseShell(JNIEnv* env,
108 const JavaParamRef<jclass>& clazz,
109 jlong shellPtr) {
108 Shell* shell = reinterpret_cast<Shell*>(shellPtr); 110 Shell* shell = reinterpret_cast<Shell*>(shellPtr);
109 shell->Close(); 111 shell->Close();
110 } 112 }
111 113
112 } // namespace content 114 } // namespace content
OLDNEW
« no previous file with comments | « content/shell/android/shell_manager.cc ('k') | content/shell/browser/shell_mojo_test_utils_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698