Adding a router class to handle messages that expect responses.
[chromium-blink-merge.git] / chrome / browser / platform_util_android.cc
blob143d313cd39a571c87762b67c5239050294b48c6
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.
5 #include "base/logging.h"
6 #include "chrome/browser/platform_util.h"
7 #include "ui/base/android/view_android.h"
9 namespace platform_util {
11 // TODO: crbug/115682 to track implementation of the following methods.
13 void ShowItemInFolder(Profile* profile, const base::FilePath& full_path) {
14 NOTIMPLEMENTED();
17 void OpenItem(Profile* profile, const base::FilePath& full_path) {
18 NOTIMPLEMENTED();
21 void OpenExternal(Profile* profile, const GURL& url) {
22 NOTIMPLEMENTED();
25 gfx::NativeWindow GetTopLevel(gfx::NativeView view) {
26 NOTIMPLEMENTED();
27 return view->GetWindowAndroid();
30 gfx::NativeView GetParent(gfx::NativeView view) {
31 NOTIMPLEMENTED();
32 return view;
35 bool IsWindowActive(gfx::NativeWindow window) {
36 NOTIMPLEMENTED();
37 return false;
40 void ActivateWindow(gfx::NativeWindow window) {
41 NOTIMPLEMENTED();
44 bool IsVisible(gfx::NativeView view) {
45 NOTIMPLEMENTED();
46 return true;
49 } // namespace platform_util