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

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

Issue 10834261: Move chrome.experimental.app.onLaunched event handler to chrome.app.runtime.onLaunched. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Another merge before retrying commit. Created 8 years, 4 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 | « no previous file | chrome/browser/extensions/api/app/app_api.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 230d5d8fd2b090b456eba210e8316ffa4274d1d0..9d0b56120fba141d989b630b50bf103861e05a2c 100644
--- a/chrome/browser/extensions/api/app/app_api.h
+++ b/chrome/browser/extensions/api/app/app_api.h
@@ -7,17 +7,8 @@
#include "chrome/browser/extensions/extension_function.h"
-class Profile;
-class GURL;
-
-namespace webkit_glue {
-struct WebIntentData;
-}
-
namespace extensions {
-class Extension;
-
class AppNotifyFunction : public SyncExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION_NAME("experimental.app.notify");
@@ -36,44 +27,6 @@ class AppClearAllNotificationsFunction : public SyncExtensionFunction {
virtual bool RunImpl() OVERRIDE;
};
-class AppEventRouter {
- public:
- // 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 std::string& base_name);
-
- // Dispatches the onLaunched event to the app implemented by |extension|
- // running in |profile|. The event parameter launchData will have a field
- // called intent, populated by |web_intent_data|.
- static void DispatchOnLaunchedEventWithWebIntent(
- Profile* profile,
- const Extension* extension,
- const webkit_glue::WebIntentData web_intent_data);
-};
-
} // namespace extensions
#endif // CHROME_BROWSER_EXTENSIONS_API_APP_APP_API_H_
« no previous file with comments | « no previous file | chrome/browser/extensions/api/app/app_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698