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

Unified Diff: chrome/browser/web_applications/web_app_android.cc

Issue 1391893003: NOT FOR REVIEW: Aura on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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
Index: chrome/browser/web_applications/web_app_android.cc
diff --git a/chrome/browser/web_applications/web_app_chromeos.cc b/chrome/browser/web_applications/web_app_android.cc
similarity index 73%
copy from chrome/browser/web_applications/web_app_chromeos.cc
copy to chrome/browser/web_applications/web_app_android.cc
index e86b9eb5999b8c32224db8a7f1a1f3c740c0cd3c..8efd3f501e12f542f746caf973bf759797674b1d 100644
--- a/chrome/browser/web_applications/web_app_chromeos.cc
+++ b/chrome/browser/web_applications/web_app_android.cc
@@ -1,4 +1,4 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
+// Copyright 2015 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.
@@ -18,20 +18,28 @@ bool CreatePlatformShortcuts(
scoped_ptr<ShortcutInfo> shortcut_info,
const extensions::FileHandlersInfo& file_handlers_info,
const ShortcutLocations& creation_locations,
- ShortcutCreationReason creation_reason) {
- return true;
+ ShortcutCreationReason /*creation_reason*/) {
+ NOTIMPLEMENTED();
+ return false;
}
void DeletePlatformShortcuts(const base::FilePath& web_app_path,
- scoped_ptr<ShortcutInfo> shortcut_info) {}
+ scoped_ptr<ShortcutInfo> shortcut_info) {
+ NOTIMPLEMENTED();
+}
void UpdatePlatformShortcuts(
const base::FilePath& web_app_path,
- const base::string16& old_app_title,
+ const base::string16& /*old_app_title*/,
scoped_ptr<ShortcutInfo> shortcut_info,
- const extensions::FileHandlersInfo& file_handlers_info) {}
+ const extensions::FileHandlersInfo& file_handlers_info) {
+ NOTIMPLEMENTED();
+}
-void DeleteAllShortcutsForProfile(const base::FilePath& profile_path) {}
+void DeleteAllShortcutsForProfile(const base::FilePath& profile_path) {
+ NOTIMPLEMENTED();
+}
} // namespace internals
+
} // namespace web_app

Powered by Google App Engine
This is Rietveld 408576698