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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/platform_util_android.cc
diff --git a/chrome/browser/platform_util_android.cc b/chrome/browser/platform_util_android.cc
new file mode 100644
index 0000000000000000000000000000000000000000..2955134aef1e5088499c5ebcd9d78eda665c8fec
--- /dev/null
+++ b/chrome/browser/platform_util_android.cc
@@ -0,0 +1,49 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "base/logging.h"
+#include "chrome/browser/platform_util.h"
+
+namespace platform_util {
+
+// TODO: crbug/115682 to track implementation of the following methods.
+
+void ShowItemInFolder(const FilePath& full_path) {
+ NOTIMPLEMENTED();
+}
+
+void OpenItem(const FilePath& full_path) {
+ NOTIMPLEMENTED();
+}
+
+void OpenExternal(const GURL& url) {
+ NOTIMPLEMENTED();
+}
+
+gfx::NativeWindow GetTopLevel(gfx::NativeView view) {
+ NOTIMPLEMENTED();
+ return view;
+}
+
+gfx::NativeView GetParent(gfx::NativeView view) {
+ NOTIMPLEMENTED();
+ return view;
+}
+
+bool IsWindowActive(gfx::NativeWindow window) {
+ NOTIMPLEMENTED();
+ return false;
+}
+
+void ActivateWindow(gfx::NativeWindow window) {
+ NOTIMPLEMENTED();
+}
+
+bool IsVisible(gfx::NativeView view) {
+ NOTIMPLEMENTED();
+ return true;
+}
+
+} // namespace platform_util
+
« 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