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

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: Address comments. Change FileHandlersInfo to hold a copy. 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
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..be2ef7455dabae236f01beb983cffae88d694ac9 100644
--- a/chrome/common/extensions/file_handler_info.h
+++ b/chrome/common/extensions/file_handler_info.h
@@ -29,7 +29,7 @@ struct FileHandlersInfo {
explicit FileHandlersInfo(const std::vector<FileHandlerInfo>* handlers);
~FileHandlersInfo();
- const std::vector<FileHandlerInfo>* handlers;
+ std::vector<FileHandlerInfo> handlers;
};
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698