Chromium Code Reviews| Index: chrome/browser/web_applications/web_app_mac.h |
| diff --git a/chrome/browser/web_applications/web_app_mac.h b/chrome/browser/web_applications/web_app_mac.h |
| index f9142b507ce8e94a3ff0accd62838c835c6b5cd2..79fff99bfbbd98e70376439393fe072eaa8b3d15 100644 |
| --- a/chrome/browser/web_applications/web_app_mac.h |
| +++ b/chrome/browser/web_applications/web_app_mac.h |
| @@ -6,6 +6,7 @@ |
| #define CHROME_BROWSER_WEB_APPLICATIONS_WEB_APP_MAC_H_ |
| #pragma once |
| +#include "base/file_path.h" |
| #include "chrome/browser/shell_integration.h" |
| namespace web_app { |
| @@ -13,6 +14,7 @@ namespace web_app { |
| class WebAppShortcutCreator { |
| public: |
| explicit WebAppShortcutCreator( |
| + const FilePath& web_app_path, |
| const ShellIntegration::ShortcutInfo& shortcut_info); |
| virtual ~WebAppShortcutCreator(); |
| @@ -25,6 +27,7 @@ class WebAppShortcutCreator { |
| bool UpdateIcon(const FilePath& app_path) const; |
| private: |
| + FilePath web_app_path_; |
|
jeremy
2012/02/09 09:27:00
Please comment this member.
sail
2012/02/10 00:13:18
Done.
|
| ShellIntegration::ShortcutInfo info_; |
| }; |