| 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 "base/logging.h" | 5 #include "base/logging.h" | 
| 6 #include "chrome/browser/platform_util.h" | 6 #include "chrome/browser/platform_util.h" | 
| 7 #include "content/public/browser/android/content_view_core.h" | 7 #include "content/public/browser/android/content_view_core.h" | 
| 8 | 8 | 
| 9 namespace platform_util { | 9 namespace platform_util { | 
| 10 | 10 | 
| 11 // TODO: crbug/115682 to track implementation of the following methods. | 11 // TODO: crbug/115682 to track implementation of the following methods. | 
| 12 | 12 | 
| 13 void ShowItemInFolder(const FilePath& full_path) { | 13 void ShowItemInFolder(const base::FilePath& full_path) { | 
| 14   NOTIMPLEMENTED(); | 14   NOTIMPLEMENTED(); | 
| 15 } | 15 } | 
| 16 | 16 | 
| 17 void OpenItem(const FilePath& full_path) { | 17 void OpenItem(const base::FilePath& full_path) { | 
| 18   NOTIMPLEMENTED(); | 18   NOTIMPLEMENTED(); | 
| 19 } | 19 } | 
| 20 | 20 | 
| 21 void OpenExternal(const GURL& url) { | 21 void OpenExternal(const GURL& url) { | 
| 22   NOTIMPLEMENTED(); | 22   NOTIMPLEMENTED(); | 
| 23 } | 23 } | 
| 24 | 24 | 
| 25 gfx::NativeWindow GetTopLevel(gfx::NativeView view) { | 25 gfx::NativeWindow GetTopLevel(gfx::NativeView view) { | 
| 26   NOTIMPLEMENTED(); | 26   NOTIMPLEMENTED(); | 
| 27   return view->GetWindowAndroid(); | 27   return view->GetWindowAndroid(); | 
| (...skipping 13 matching lines...) Expand all  Loading... | 
| 41   NOTIMPLEMENTED(); | 41   NOTIMPLEMENTED(); | 
| 42 } | 42 } | 
| 43 | 43 | 
| 44 bool IsVisible(gfx::NativeView view) { | 44 bool IsVisible(gfx::NativeView view) { | 
| 45   NOTIMPLEMENTED(); | 45   NOTIMPLEMENTED(); | 
| 46   return true; | 46   return true; | 
| 47 } | 47 } | 
| 48 | 48 | 
| 49 } // namespace platform_util | 49 } // namespace platform_util | 
| 50 | 50 | 
| OLD | NEW | 
|---|