Index: chrome/browser/extensions/api/app_runtime/app_runtime_api.h |
diff --git a/chrome/browser/extensions/api/app_runtime/app_runtime_api.h b/chrome/browser/extensions/api/app_runtime/app_runtime_api.h |
index 84ade6303e23c58889d070000ee14cfce6424e6d..6e85caad3a1bc79911e623f104bc6cc9994a88e9 100644 |
--- a/chrome/browser/extensions/api/app_runtime/app_runtime_api.h |
+++ b/chrome/browser/extensions/api/app_runtime/app_runtime_api.h |
@@ -18,14 +18,20 @@ namespace extensions { |
class Extension; |
+namespace app_file_handler_util { |
+class GrantedFileEntry; |
+} |
+ |
class AppEventRouter { |
public: |
// Dispatches the onLaunched event to the given app, providing no launch |
// data. |
static void DispatchOnLaunchedEvent(Profile* profile, |
const Extension* extension); |
- static void DispatchOnRestartedEvent(Profile* profile, |
- const Extension* extension); |
+ static void DispatchOnRestartedEvent( |
+ Profile* profile, |
+ const Extension* extension, |
+ const std::vector<app_file_handler_util::GrantedFileEntry>& file_entries); |
// TODO(benwells): Update this comment, it is out of date. |
// Dispatches the onLaunched event to the given app, providing launch data of |