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

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

Issue 2621163005: Remove all use of FileHandlersInfo from desktop shortcut creation. (Closed)
Patch Set: Mac tests: Remove FileHandlersInfo references (plus tiny rebase). Created 3 years, 11 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 791ab22c7870203ba450357d175d66f6980d385c..c94bd5e61dbc9b55ca0d8801cb0808ef60d9f456 100644
--- a/chrome/browser/web_applications/web_app_mac.h
+++ b/chrome/browser/web_applications/web_app_mac.h
@@ -15,7 +15,6 @@
#include "base/gtest_prod_util.h"
#include "base/macros.h"
#include "chrome/browser/web_applications/web_app.h"
-#include "extensions/common/manifest_handlers/file_handler_info.h"
namespace base {
class CommandLine;
@@ -54,8 +53,7 @@ class WebAppShortcutCreator {
// Retains the pointer |shortcut_info|; the ShortcutInfo object must outlive
// the WebAppShortcutCreator.
WebAppShortcutCreator(const base::FilePath& app_data_dir,
- const ShortcutInfo* shortcut_info,
- const extensions::FileHandlersInfo& file_handlers_info);
+ const ShortcutInfo* shortcut_info);
virtual ~WebAppShortcutCreator();
@@ -127,9 +125,6 @@ class WebAppShortcutCreator {
// Information about the app. Owned by the caller of the constructor.
const ShortcutInfo* info_;
- // The app's file handlers.
- extensions::FileHandlersInfo file_handlers_info_;
-
DISALLOW_COPY_AND_ASSIGN(WebAppShortcutCreator);
};

Powered by Google App Engine
This is Rietveld 408576698