Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(175)

Side by Side Diff: chrome/browser/platform_util_android.cc

Issue 9464024: Adding the android specific platorm_util file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updated copyright and removed comments Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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"
7
8 namespace platform_util {
9
10 // TODO: crbug/115682 to track implementation of the following methods.
11
12 void ShowItemInFolder(const FilePath& full_path) {
13 NOTIMPLEMENTED();
14 }
15
16 void OpenItem(const FilePath& full_path) {
17 NOTIMPLEMENTED();
18 }
19
20 void OpenExternal(const GURL& url) {
21 NOTIMPLEMENTED();
22 }
23
24 gfx::NativeWindow GetTopLevel(gfx::NativeView view) {
25 NOTIMPLEMENTED();
26 return view;
27 }
28
29 gfx::NativeView GetParent(gfx::NativeView view) {
30 NOTIMPLEMENTED();
31 return view;
32 }
33
34 bool IsWindowActive(gfx::NativeWindow window) {
35 NOTIMPLEMENTED();
36 return false;
37 }
38
39 void ActivateWindow(gfx::NativeWindow window) {
40 NOTIMPLEMENTED();
41 }
42
43 bool IsVisible(gfx::NativeView view) {
44 NOTIMPLEMENTED();
45 return true;
46 }
47
48 } // namespace platform_util
49
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698