| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |