OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/web_applications/web_app.h" | 5 #include "chrome/browser/web_applications/web_app.h" |
6 | 6 |
7 namespace web_app { | 7 namespace web_app { |
8 namespace internals { | 8 namespace internals { |
9 | 9 |
10 bool CreatePlatformShortcut( | 10 bool CreatePlatformShortcuts( |
11 const FilePath& web_app_path, | 11 const FilePath& web_app_path, |
12 const FilePath& profile_path, | |
13 const ShellIntegration::ShortcutInfo& shortcut_info) { | 12 const ShellIntegration::ShortcutInfo& shortcut_info) { |
14 return true; | 13 return true; |
15 } | 14 } |
16 | 15 |
17 void DeletePlatformShortcuts(const FilePath& profile_path, | 16 void DeletePlatformShortcuts( |
18 const std::string& extension_id) {} | 17 const FilePath& web_app_path, |
| 18 const ShellIntegration::ShortcutInfo& shortcut_info) {} |
19 | 19 |
20 } // namespace internals | 20 } // namespace internals |
21 } // namespace web_app | 21 } // namespace web_app |
OLD | NEW |