| Index: chrome/browser/web_applications/web_app.h
|
| diff --git a/chrome/browser/web_applications/web_app.h b/chrome/browser/web_applications/web_app.h
|
| index 1ae11a320343ed8e3f02faf33df674d64d06d0b1..64b32d4c71801ccb93febfdcf3d4f5bf346d589b 100644
|
| --- a/chrome/browser/web_applications/web_app.h
|
| +++ b/chrome/browser/web_applications/web_app.h
|
| @@ -16,6 +16,11 @@
|
|
|
| namespace web_app {
|
|
|
| +// Returns data directory for given web app url.
|
| +FilePath GetWebAppDataDirectory(const FilePath& profile_path,
|
| + const std::string& extension_id,
|
| + const GURL& url);
|
| +
|
| // Compute a deterministic name based on data in the shortcut_info.
|
| std::string GenerateApplicationNameFromInfo(
|
| const ShellIntegration::ShortcutInfo& shortcut_info);
|
| @@ -70,9 +75,6 @@ namespace internals {
|
| bool CheckAndSaveIcon(const FilePath& icon_file, const SkBitmap& image);
|
| #endif
|
|
|
| -FilePath GetWebAppDataDirectory(const FilePath& root_dir,
|
| - const ShellIntegration::ShortcutInfo& info);
|
| -
|
| void CreateShortcutTask(const FilePath& web_app_path,
|
| const FilePath& profile_path,
|
| const ShellIntegration::ShortcutInfo& shortcut_info);
|
|
|