[email protected] | efad664 | 2012-02-28 03:42:42 | [diff] [blame] | 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 | ||||
3 | // found in the LICENSE file. | ||||
4 | |||||
5 | #include "base/logging.h" | ||||
6 | #include "chrome/browser/platform_util.h" | ||||
jaekyun | e4f9eed | 2015-02-24 02:06:58 | [diff] [blame^] | 7 | #include "ui/android/view_android.h" |
[email protected] | efad664 | 2012-02-28 03:42:42 | [diff] [blame] | 8 | |
9 | namespace platform_util { | ||||
10 | |||||
11 | // TODO: crbug/115682 to track implementation of the following methods. | ||||
12 | |||||
[email protected] | 4d225de1 | 2013-12-13 09:29:17 | [diff] [blame] | 13 | void ShowItemInFolder(Profile* profile, const base::FilePath& full_path) { |
[email protected] | efad664 | 2012-02-28 03:42:42 | [diff] [blame] | 14 | NOTIMPLEMENTED(); |
15 | } | ||||
16 | |||||
[email protected] | 4d225de1 | 2013-12-13 09:29:17 | [diff] [blame] | 17 | void OpenItem(Profile* profile, const base::FilePath& full_path) { |
[email protected] | efad664 | 2012-02-28 03:42:42 | [diff] [blame] | 18 | NOTIMPLEMENTED(); |
19 | } | ||||
20 | |||||
[email protected] | 7f0a3efa | 2013-12-12 17:16:12 | [diff] [blame] | 21 | void OpenExternal(Profile* profile, const GURL& url) { |
[email protected] | efad664 | 2012-02-28 03:42:42 | [diff] [blame] | 22 | NOTIMPLEMENTED(); |
23 | } | ||||
24 | |||||
25 | gfx::NativeWindow GetTopLevel(gfx::NativeView view) { | ||||
26 | NOTIMPLEMENTED(); | ||||
[email protected] | 2d02a200 | 2012-09-18 21:47:56 | [diff] [blame] | 27 | return view->GetWindowAndroid(); |
[email protected] | efad664 | 2012-02-28 03:42:42 | [diff] [blame] | 28 | } |
29 | |||||
30 | gfx::NativeView GetParent(gfx::NativeView view) { | ||||
31 | NOTIMPLEMENTED(); | ||||
32 | return view; | ||||
33 | } | ||||
34 | |||||
35 | bool IsWindowActive(gfx::NativeWindow window) { | ||||
36 | NOTIMPLEMENTED(); | ||||
37 | return false; | ||||
38 | } | ||||
39 | |||||
40 | void ActivateWindow(gfx::NativeWindow window) { | ||||
41 | NOTIMPLEMENTED(); | ||||
42 | } | ||||
43 | |||||
44 | bool IsVisible(gfx::NativeView view) { | ||||
45 | NOTIMPLEMENTED(); | ||||
46 | return true; | ||||
47 | } | ||||
48 | |||||
49 | } // namespace platform_util |