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

Unified Diff: chrome/browser/shell_integration_linux.cc

Issue 10915079: remove --enable-experimental-extension-apis from packaged app shortcut args (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 3 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/shell_integration_linux.cc
diff --git a/chrome/browser/shell_integration_linux.cc b/chrome/browser/shell_integration_linux.cc
index ea05095b793ee2aac3f6ef78dc0e199dd9c30c5c..b4f79426369df6fc7c21e3d7924eb69d064a180a 100644
--- a/chrome/browser/shell_integration_linux.cc
+++ b/chrome/browser/shell_integration_linux.cc
@@ -520,7 +520,6 @@ std::string GetDesktopFileContents(
const std::string& app_name,
const GURL& url,
const std::string& extension_id,
- const bool is_platform_app,
const FilePath& extension_path,
const string16& title,
const std::string& icon_name,
@@ -589,7 +588,7 @@ std::string GetDesktopFileContents(
}
CommandLine cmd_line(CommandLine::NO_PROGRAM);
cmd_line = ShellIntegration::CommandLineArgsForLauncher(
- url, extension_id, is_platform_app, profile_path);
+ url, extension_id, profile_path);
const CommandLine::SwitchMap& switch_map = cmd_line.GetSwitches();
for (CommandLine::SwitchMap::const_iterator i = switch_map.begin();
i != switch_map.end(); ++i) {
@@ -658,7 +657,6 @@ bool CreateDesktopShortcut(
app_name,
shortcut_info.url,
shortcut_info.extension_id,
- shortcut_info.is_platform_app,
shortcut_info.extension_path,
shortcut_info.title,
icon_name,

Powered by Google App Engine
This is Rietveld 408576698