| Index: chrome/browser/extensions/message_service.h
|
| diff --git a/chrome/browser/extensions/message_service.h b/chrome/browser/extensions/message_service.h
|
| index 381f15a59ed4767db51308a2188b565861240255..47a3116dc315a519fd6acbca3872caf75cd06dc4 100644
|
| --- a/chrome/browser/extensions/message_service.h
|
| +++ b/chrome/browser/extensions/message_service.h
|
| @@ -14,7 +14,6 @@
|
| #include "content/public/browser/notification_observer.h"
|
| #include "content/public/browser/notification_registrar.h"
|
|
|
| -class ExtensionHost;
|
| class Profile;
|
|
|
| namespace content {
|
| @@ -23,6 +22,7 @@ class WebContents;
|
| }
|
|
|
| namespace extensions {
|
| +class ExtensionHost;
|
| class LazyBackgroundTaskQueue;
|
|
|
| // This class manages message and event passing between renderer processes.
|
| @@ -123,16 +123,16 @@ class MessageService : public content::NotificationObserver {
|
| // use that argument.
|
| void PendingOpenChannel(const OpenChannelParams& params,
|
| int source_process_id,
|
| - ExtensionHost* host);
|
| + extensions::ExtensionHost* host);
|
| void PendingCloseChannel(int port_id,
|
| bool connection_error,
|
| - ExtensionHost* host) {
|
| + extensions::ExtensionHost* host) {
|
| if (host)
|
| CloseChannel(port_id, connection_error);
|
| }
|
| void PendingPostMessage(int port_id,
|
| const std::string& message,
|
| - ExtensionHost* host) {
|
| + extensions::ExtensionHost* host) {
|
| if (host)
|
| PostMessageFromRenderer(port_id, message);
|
| }
|
|
|