summaryrefslogtreecommitdiffstats
path: root/chrome/browser/web_app_launcher.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/web_app_launcher.h')
-rw-r--r--chrome/browser/web_app_launcher.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/chrome/browser/web_app_launcher.h b/chrome/browser/web_app_launcher.h
index f1a5a01..7b377bf 100644
--- a/chrome/browser/web_app_launcher.h
+++ b/chrome/browser/web_app_launcher.h
@@ -16,10 +16,10 @@ class WebAppLauncher {
public:
// Queries Gears for the name of the app, and when Gears callsback with the
// response creates a WebApp and Browser.
- static void Launch(Profile* profile, const GURL& url, int show_command);
+ static void Launch(Profile* profile, const GURL& url);
private:
- WebAppLauncher(Profile* profile, const GURL& url, int show_command);
+ WebAppLauncher(Profile* profile, const GURL& url);
// Invoked from the Launch method. Queries Gears for the apps. Gears callback
// to OnGotApps.
@@ -34,9 +34,6 @@ class WebAppLauncher {
// URL of the app.
const GURL url_;
- // How to show the app.
- const int show_command_;
-
DISALLOW_EVIL_CONSTRUCTORS(WebAppLauncher);
};