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

Unified Diff: extensions/utility/unpacker.h

Issue 2697463002: Convert utility process extension Unpacker IPC to mojo (Closed)
Patch Set: Sync to ToT. 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: extensions/utility/unpacker.h
diff --git a/extensions/utility/unpacker.h b/extensions/utility/unpacker.h
index fa77b69fe5566b5f135c2e1e9a1473017fb3d798..63b20be7a06c6b5d8bbd4922606671058fb5c18b 100644
--- a/extensions/utility/unpacker.h
+++ b/extensions/utility/unpacker.h
@@ -53,6 +53,10 @@ class Unpacker {
base::DictionaryValue* parsed_manifest() { return parsed_manifest_.get(); }
base::DictionaryValue* parsed_catalogs() { return parsed_catalogs_.get(); }
+ std::unique_ptr<base::DictionaryValue> TakeParsedManifest() {
+ return std::move(parsed_manifest_);
+ }
+
private:
// Write the decoded images to kDecodedImagesFilename. We do this instead
// of sending them over IPC, since they are so large. Returns true on

Powered by Google App Engine
This is Rietveld 408576698