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

Unified Diff: chrome/browser/web_app_launcher.h

Issue 10896: Re-do the way browser windows are shown:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years, 1 month 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_app_launcher.h
===================================================================
--- chrome/browser/web_app_launcher.h (revision 5374)
+++ chrome/browser/web_app_launcher.h (working copy)
@@ -16,10 +16,10 @@
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 @@
// URL of the app.
const GURL url_;
- // How to show the app.
- const int show_command_;
-
DISALLOW_EVIL_CONSTRUCTORS(WebAppLauncher);
};

Powered by Google App Engine
This is Rietveld 408576698