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

Unified Diff: chrome/browser/extensions/api/app/app_api.h

Issue 10332071: Pass command line arguments onto platform apps which provide the right intent. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Windows tests fixed Created 8 years, 7 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/browser/extensions/api/app/app_api.h
diff --git a/chrome/browser/extensions/api/app/app_api.h b/chrome/browser/extensions/api/app/app_api.h
index 306c158962c3f59e5d178988987a63c6bfddea2d..d5690ed3e2554af521f7f811feef9553f732e2f3 100644
--- a/chrome/browser/extensions/api/app/app_api.h
+++ b/chrome/browser/extensions/api/app/app_api.h
@@ -9,6 +9,7 @@
#include "chrome/browser/extensions/extension_function.h"
class Profile;
+class GURL;
namespace extensions {
@@ -34,9 +35,32 @@ class AppClearAllNotificationsFunction : public SyncExtensionFunction {
class AppEventRouter {
public:
- // Dispatches the onLaunched event to the given app.
+ // Dispatches the onLaunched event to the given app, providing no launch
+ // data.
static void DispatchOnLaunchedEvent(Profile* profile,
const Extension* extension);
+
+ // Dispatches the onLaunched event to the given app, providing launch data of
+ // the form:
+ // {
+ // "intent" : {
+ // "action" : |action|,
+ // "type" : "chrome-extension://fileentry",
+ // "data" : a FileEntry,
+ // "postResults" : a null function,
+ // "postFailure" : a null function
+ // }
+ // }
+
+ // launchData.intent.data and launchData.intent.postResults are created in a
+ // custom dispatch event in javascript. The FileEntry is created from
+ // |file_system_id| and |base_name|.
+ static void DispatchOnLaunchedEventWithFileEntry(
+ Profile* profile,
+ const Extension* extension,
+ const string16& action,
+ const std::string& file_system_id,
+ const FilePath& base_name);
};
} // namespace extensions
« no previous file with comments | « chrome/browser/chromeos/extensions/file_manager_util.cc ('k') | chrome/browser/extensions/api/app/app_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698