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

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

Issue 280963002: Move FileHandlersInfo to /extensions and remove struct FileHandlersInfo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Latest master Created 6 years, 7 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
« no previous file with comments | « chrome/browser/web_applications/web_app_mac.mm ('k') | chrome/chrome_common.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 10b27debb1a05d1f2a0985f4c7ce77edfc338c04..ca5d7c22da6ac6936cff93f119c9723b25780809 100644
--- a/chrome/browser/web_applications/web_app_mac_unittest.mm
+++ b/chrome/browser/web_applications/web_app_mac_unittest.mm
@@ -307,11 +307,11 @@ TEST_F(WebAppShortcutCreatorTest, FileHandlers) {
handler_0.extensions.insert("ext1");
handler_0.types.insert("type0");
handler_0.types.insert("type1");
- file_handlers_info.handlers.push_back(handler_0);
+ file_handlers_info.push_back(handler_0);
extensions::FileHandlerInfo handler_1;
handler_1.extensions.insert("ext2");
handler_1.types.insert("type2");
- file_handlers_info.handlers.push_back(handler_1);
+ file_handlers_info.push_back(handler_1);
NiceMock<WebAppShortcutCreatorMock> shortcut_creator(
app_data_dir_, info_, file_handlers_info);
« no previous file with comments | « chrome/browser/web_applications/web_app_mac.mm ('k') | chrome/chrome_common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698