| Index: content/public/browser/extension_system_notifications.cc
|
| diff --git a/content/public/browser/extension_system_notifications.cc b/content/public/browser/extension_system_notifications.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3743b1652bdbbaa4c3abc91edd5304aab9583635
|
| --- /dev/null
|
| +++ b/content/public/browser/extension_system_notifications.cc
|
| @@ -0,0 +1,22 @@
|
| +// Copyright (c) 2012 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.
|
| +
|
| +#include "content/public/browser/extension_system_notifications.h"
|
| +
|
| +namespace content {
|
| +
|
| +LaunchAppWithUrlDetails::LaunchAppWithUrlDetails(const std::string& app_id,
|
| + const std::string& handler_id,
|
| + const GURL& url,
|
| + const GURL& referrer_url)
|
| + : app_id(app_id),
|
| + handler_id(handler_id),
|
| + url(url),
|
| + referrer_url(referrer_url) {
|
| +}
|
| +
|
| +LaunchAppWithUrlDetails::~LaunchAppWithUrlDetails() {
|
| +}
|
| +
|
| +} // namespace content
|
|
|