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

Unified Diff: chrome/browser/web_applications/web_app_mac_unittest.mm

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, 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_unittest.mm
diff --git a/chrome/browser/web_applications/web_app_mac_unittest.mm b/chrome/browser/web_applications/web_app_mac_unittest.mm
index f8f43dcc2d6029d13e185910e40ab46e545b3306..7001f54c8e6d79b3fef05236f60806beb10dee4c 100644
--- a/chrome/browser/web_applications/web_app_mac_unittest.mm
+++ b/chrome/browser/web_applications/web_app_mac_unittest.mm
@@ -44,16 +44,7 @@ class WebAppShortcutCreatorMock : public web_app::WebAppShortcutCreator {
public:
WebAppShortcutCreatorMock(const base::FilePath& app_data_dir,
const web_app::ShortcutInfo* shortcut_info)
- : WebAppShortcutCreator(app_data_dir,
- shortcut_info,
- extensions::FileHandlersInfo()) {}
-
- WebAppShortcutCreatorMock(
- const base::FilePath& app_data_dir,
- const web_app::ShortcutInfo* shortcut_info,
- const extensions::FileHandlersInfo& file_handlers_info)
- : WebAppShortcutCreator(app_data_dir, shortcut_info, file_handlers_info) {
- }
+ : WebAppShortcutCreator(app_data_dir, shortcut_info) {}
MOCK_CONST_METHOD0(GetApplicationsDirname, base::FilePath());
MOCK_CONST_METHOD1(GetAppBundleById,

Powered by Google App Engine
This is Rietveld 408576698