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

Unified Diff: chrome/utility/chrome_content_utility_client.cc

Issue 61643015: Adds imageWriterPrivate support for Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reorganization and test updates. Created 7 years, 1 month 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/utility/chrome_content_utility_client.cc
diff --git a/chrome/utility/chrome_content_utility_client.cc b/chrome/utility/chrome_content_utility_client.cc
index 3cc0d30c792ce8bd9297edf6b23b1412c8eecf5d..1dfef7b3354edc2651920df9d63f158bd0cf8d20 100644
--- a/chrome/utility/chrome_content_utility_client.cc
+++ b/chrome/utility/chrome_content_utility_client.cc
@@ -20,6 +20,7 @@
#include "chrome/common/extensions/update_manifest.h"
#include "chrome/common/safe_browsing/zip_analyzer.h"
#include "chrome/utility/extensions/unpacker.h"
+#include "chrome/utility/image_writer/image_writer_handler.h"
#include "chrome/utility/profile_import_handler.h"
#include "chrome/utility/web_resource_unpacker.h"
#include "content/public/child/image_decoder_utils.h"
@@ -93,6 +94,8 @@ ChromeContentUtilityClient::ChromeContentUtilityClient() {
handlers_.push_back(new local_discovery::ServiceDiscoveryMessageHandler());
}
#endif // ENABLE_MDNS
+
+ handlers_.push_back(new image_writer::ImageWriterHandler());
}
ChromeContentUtilityClient::~ChromeContentUtilityClient() {

Powered by Google App Engine
This is Rietveld 408576698