| Index: chrome/browser/shell_integration_linux.h
|
| diff --git a/chrome/browser/shell_integration_linux.h b/chrome/browser/shell_integration_linux.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2e839a5c47e2d34e5d975655e221032fac239d1c
|
| --- /dev/null
|
| +++ b/chrome/browser/shell_integration_linux.h
|
| @@ -0,0 +1,24 @@
|
| +// Copyright (c) 2012 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.
|
| +
|
| +#ifndef CHROME_BROWSER_SHELL_INTEGRATION_LINUX_H_
|
| +#define CHROME_BROWSER_SHELL_INTEGRATION_LINUX_H_
|
| +#pragma once
|
| +
|
| +#include <string>
|
| +
|
| +#include "base/basictypes.h"
|
| +#include "base/file_path.h"
|
| +#include "chrome/browser/shell_integration.h"
|
| +
|
| +namespace ShellIntegrationLinux {
|
| +
|
| +bool CreateDesktopShortcutForChromeApp(
|
| + const ShellIntegration::ShortcutInfo& shortcut_info,
|
| + const FilePath& web_app_path,
|
| + const std::string& shortcut_template);
|
| +
|
| +} // namespace ShellIntegrationLinux
|
| +
|
| +#endif // CHROME_BROWSER_SHELL_INTEGRATION_LINUX_H_
|
|
|