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

Unified Diff: extensions/utility/utility_handler.h

Issue 864093002: Move sandboxed_unpacker.{h,cc} from chrome/ to extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix compile errors Created 5 years, 11 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 | « extensions/test/test_content_utility_client.cc ('k') | extensions/utility/utility_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/utility/utility_handler.h
diff --git a/extensions/utility/utility_handler.h b/extensions/utility/utility_handler.h
index 0ae31ecf872867c3a8f2baae86a012bc9ac0ebbc..89a81d6e78d8a9199e04f4b637d9c37c70a539a8 100644
--- a/extensions/utility/utility_handler.h
+++ b/extensions/utility/utility_handler.h
@@ -7,8 +7,13 @@
#include <string>
+#include "base/callback.h"
#include "base/macros.h"
+namespace base {
+class FilePath;
+}
+
namespace IPC {
class Message;
}
@@ -28,6 +33,9 @@ class UtilityHandler {
private:
// IPC message handlers.
void OnParseUpdateManifest(const std::string& xml);
+ void OnUnpackExtension(const base::FilePath& extension_path,
+ const std::string& extension_id,
+ int location, int creation_flags);
DISALLOW_COPY_AND_ASSIGN(UtilityHandler);
};
« no previous file with comments | « extensions/test/test_content_utility_client.cc ('k') | extensions/utility/utility_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698