Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Unified Diff: chrome/browser/web_applications/web_app_mac.h

Issue 9374009: Install platform apps into a separate data directory (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix comment Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_;
};

Powered by Google App Engine
This is Rietveld 408576698