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

Unified Diff: chrome/common/extensions/file_handler_info.h

Issue 64803005: File association for app shims. (Mac) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Missed a comma. Created 6 years, 8 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/common/chrome_switches.cc ('k') | chrome/common/extensions/file_handler_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/file_handler_info.h
diff --git a/chrome/common/extensions/file_handler_info.h b/chrome/common/extensions/file_handler_info.h
index 159c08a8423aad3615a32d99ece36fc69d231d3b..5905ecd0240b0dfb73f05689f33bf5902f2202ac 100644
--- a/chrome/common/extensions/file_handler_info.h
+++ b/chrome/common/extensions/file_handler_info.h
@@ -26,10 +26,10 @@ struct FileHandlerInfo {
};
struct FileHandlersInfo {
- explicit FileHandlersInfo(const std::vector<FileHandlerInfo>* handlers);
+ FileHandlersInfo();
~FileHandlersInfo();
- const std::vector<FileHandlerInfo>* handlers;
+ std::vector<FileHandlerInfo> handlers;
};
} // namespace extensions
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | chrome/common/extensions/file_handler_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698