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 |