OLD | NEW |
(Empty) | |
| 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 #ifndef CHROME_BROWSER_SHELL_INTEGRATION_LINUX_H_ |
| 6 #define CHROME_BROWSER_SHELL_INTEGRATION_LINUX_H_ |
| 7 #pragma once |
| 8 |
| 9 #include <string> |
| 10 |
| 11 #include "base/basictypes.h" |
| 12 #include "base/file_path.h" |
| 13 #include "chrome/browser/shell_integration.h" |
| 14 |
| 15 namespace ShellIntegrationLinux { |
| 16 |
| 17 bool CreateDesktopShortcutForChromeApp( |
| 18 const ShellIntegration::ShortcutInfo& shortcut_info, |
| 19 const FilePath& web_app_path, |
| 20 const std::string& shortcut_template); |
| 21 |
| 22 } // namespace ShellIntegrationLinux |
| 23 |
| 24 #endif // CHROME_BROWSER_SHELL_INTEGRATION_LINUX_H_ |
OLD | NEW |