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

Side by Side Diff: blimp/client/core/contents/android/blimp_navigation_controller_impl_android.cc

Issue 2209993003: Add missing using statements for JNI types. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 "blimp/client/core/contents/android/blimp_navigation_controller_impl_an droid.h" 5 #include "blimp/client/core/contents/android/blimp_navigation_controller_impl_an droid.h"
6 6
7 #include <memory> 7 #include <memory>
8 8
9 #include "base/android/jni_android.h" 9 #include "base/android/jni_android.h"
10 #include "base/android/jni_string.h" 10 #include "base/android/jni_string.h"
11 #include "base/android/scoped_java_ref.h" 11 #include "base/android/scoped_java_ref.h"
12 #include "base/memory/ptr_util.h" 12 #include "base/memory/ptr_util.h"
13 #include "jni/BlimpNavigationControllerImpl_jni.h" 13 #include "jni/BlimpNavigationControllerImpl_jni.h"
14 14
15 using base::android::JavaParamRef;
16
15 namespace blimp { 17 namespace blimp {
16 namespace client { 18 namespace client {
17 19
18 // static 20 // static
19 bool BlimpNavigationControllerImplAndroid::RegisterJni(JNIEnv* env) { 21 bool BlimpNavigationControllerImplAndroid::RegisterJni(JNIEnv* env) {
20 return RegisterNativesImpl(env); 22 return RegisterNativesImpl(env);
21 } 23 }
22 24
23 // static 25 // static
24 BlimpNavigationControllerImplAndroid* 26 BlimpNavigationControllerImplAndroid*
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 } 88 }
87 89
88 void BlimpNavigationControllerImplAndroid::Reload( 90 void BlimpNavigationControllerImplAndroid::Reload(
89 JNIEnv* env, 91 JNIEnv* env,
90 const JavaParamRef<jobject>& obj) { 92 const JavaParamRef<jobject>& obj) {
91 blimp_navigation_controller_impl_->Reload(); 93 blimp_navigation_controller_impl_->Reload();
92 } 94 }
93 95
94 } // namespace client 96 } // namespace client
95 } // namespace blimp 97 } // namespace blimp
OLDNEW
« no previous file with comments | « blimp/client/core/contents/android/blimp_contents_factory.cc ('k') | chrome/browser/after_startup_task_utils_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698