• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 "chrome/browser/web_applications/web_app.h"
6 
7 namespace web_app {
8 namespace internals {
9 
CreatePlatformShortcuts(const base::FilePath & web_app_path,const ShellIntegration::ShortcutInfo & shortcut_info,const ShellIntegration::ShortcutLocations & creation_locations,ShortcutCreationReason creation_reason)10 bool CreatePlatformShortcuts(
11     const base::FilePath& web_app_path,
12     const ShellIntegration::ShortcutInfo& shortcut_info,
13     const ShellIntegration::ShortcutLocations& creation_locations,
14     ShortcutCreationReason creation_reason) {
15   return true;
16 }
17 
DeletePlatformShortcuts(const base::FilePath & web_app_path,const ShellIntegration::ShortcutInfo & shortcut_info)18 void DeletePlatformShortcuts(
19     const base::FilePath& web_app_path,
20     const ShellIntegration::ShortcutInfo& shortcut_info) {}
21 
UpdatePlatformShortcuts(const base::FilePath & web_app_path,const base::string16 & old_app_title,const ShellIntegration::ShortcutInfo & shortcut_info)22 void UpdatePlatformShortcuts(
23     const base::FilePath& web_app_path,
24     const base::string16& old_app_title,
25     const ShellIntegration::ShortcutInfo& shortcut_info) {}
26 
DeleteAllShortcutsForProfile(const base::FilePath & profile_path)27 void DeleteAllShortcutsForProfile(const base::FilePath& profile_path) {}
28 
29 }  // namespace internals
30 }  // namespace web_app
31