Remove obsolete for_web_contents parameter in FontRenderParamsQuery.
[chromium-blink-merge.git] / chrome / browser / platform_util_android.cc
blob8a14b58f0f518dd5695b8d14db05266275e635cb
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/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,
18 const base::FilePath& full_path,
19 OpenItemType item_type,
20 const OpenOperationCallback& callback) {
21 NOTIMPLEMENTED();
24 void OpenExternal(Profile* profile, const GURL& url) {
25 NOTIMPLEMENTED();
28 gfx::NativeWindow GetTopLevel(gfx::NativeView view) {
29 NOTIMPLEMENTED();
30 return view->GetWindowAndroid();
33 gfx::NativeView GetParent(gfx::NativeView view) {
34 NOTIMPLEMENTED();
35 return view;
38 bool IsWindowActive(gfx::NativeWindow window) {
39 NOTIMPLEMENTED();
40 return false;
43 void ActivateWindow(gfx::NativeWindow window) {
44 NOTIMPLEMENTED();
47 bool IsVisible(gfx::NativeView view) {
48 NOTIMPLEMENTED();
49 return true;
52 } // namespace platform_util