Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / web_applications / web_app_chromeos.cc
1 // Copyright 2013 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 "chrome/browser/web_applications/web_app.h"
6
7 namespace web_app {
8 namespace internals {
9
10 bool CreatePlatformShortcuts(
11     const base::FilePath& web_app_path,
12     const web_app::ShortcutInfo& shortcut_info,
13     const extensions::FileHandlersInfo& file_handlers_info,
14     const web_app::ShortcutLocations& creation_locations,
15     ShortcutCreationReason creation_reason) {
16   return true;
17 }
18
19 void DeletePlatformShortcuts(
20     const base::FilePath& web_app_path,
21     const web_app::ShortcutInfo& shortcut_info) {}
22
23 void UpdatePlatformShortcuts(
24     const base::FilePath& web_app_path,
25     const base::string16& old_app_title,
26     const web_app::ShortcutInfo& shortcut_info,
27     const extensions::FileHandlersInfo& file_handlers_info) {}
28
29 void DeleteAllShortcutsForProfile(const base::FilePath& profile_path) {}
30
31 }  // namespace internals
32 }  // namespace web_app