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

Side by Side Diff: chrome/browser/platform_util_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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 <jni.h> 5 #include <jni.h>
6 6
7 #include "base/android/jni_android.h" 7 #include "base/android/jni_android.h"
8 #include "base/android/jni_string.h" 8 #include "base/android/jni_string.h"
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "chrome/browser/platform_util.h" 10 #include "chrome/browser/platform_util.h"
11 #include "jni/PlatformUtil_jni.h" 11 #include "jni/PlatformUtil_jni.h"
12 #include "ui/android/view_android.h" 12 #include "ui/android/view_android.h"
13 #include "url/gurl.h" 13 #include "url/gurl.h"
14 14
15 using base::android::ScopedJavaLocalRef;
16
15 namespace platform_util { 17 namespace platform_util {
16 18
17 // TODO: crbug/115682 to track implementation of the following methods. 19 // TODO: crbug/115682 to track implementation of the following methods.
18 20
19 void ShowItemInFolder(Profile* profile, const base::FilePath& full_path) { 21 void ShowItemInFolder(Profile* profile, const base::FilePath& full_path) {
20 NOTIMPLEMENTED(); 22 NOTIMPLEMENTED();
21 } 23 }
22 24
23 void OpenItem(Profile* profile, 25 void OpenItem(Profile* profile,
24 const base::FilePath& full_path, 26 const base::FilePath& full_path,
(...skipping 27 matching lines...) Expand all
52 void ActivateWindow(gfx::NativeWindow window) { 54 void ActivateWindow(gfx::NativeWindow window) {
53 NOTIMPLEMENTED(); 55 NOTIMPLEMENTED();
54 } 56 }
55 57
56 bool IsVisible(gfx::NativeView view) { 58 bool IsVisible(gfx::NativeView view) {
57 NOTIMPLEMENTED(); 59 NOTIMPLEMENTED();
58 return true; 60 return true;
59 } 61 }
60 62
61 } // namespace platform_util 63 } // namespace platform_util
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698