Index: content/public/browser/extension_system_notifications.h |
diff --git a/content/public/browser/extension_system_notifications.h b/content/public/browser/extension_system_notifications.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..5aad427abf93abc16d1d02ced14cd696b905eef3 |
--- /dev/null |
+++ b/content/public/browser/extension_system_notifications.h |
@@ -0,0 +1,29 @@ |
+// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CONTENT_PUBLIC_BROWSER_EXTENSION_SYSTEM_NOTIFICATIONS_H_ |
+#define CONTENT_PUBLIC_BROWSER_EXTENSION_SYSTEM_NOTIFICATIONS_H_ |
+ |
+#include <string> |
+ |
+#include "content/common/content_export.h" |
+#include "googleurl/src/gurl.h" |
+ |
+namespace content { |
+ |
+struct CONTENT_EXPORT LaunchAppWithUrlDetails { |
Charlie Reis
2013/08/26 22:17:52
Like the extension stuff, we can't add this in con
sergeygs
2013/08/29 08:24:42
Changed the naming to reflect the general nature o
|
+ LaunchAppWithUrlDetails(const std::string& app_id, |
+ const std::string& handler_id, |
+ const GURL& url, |
+ const GURL& referrer_url); |
+ ~LaunchAppWithUrlDetails(); |
+ std::string app_id; |
+ std::string handler_id; |
+ GURL url; |
+ GURL referrer_url; |
+}; |
+ |
+} // namespace content |
+ |
+#endif // CONTENT_PUBLIC_BROWSER_EXTENSION_SYSTEM_NOTIFICATIONS_H_ |