| Index: chrome/browser/extensions/extension_function_dispatcher.cc
|
| diff --git a/chrome/browser/extensions/extension_function_dispatcher.cc b/chrome/browser/extensions/extension_function_dispatcher.cc
|
| index 39896f534cdd51da58270301cd84cf7b18b3513f..1ad8e2885b385e861e06ef07c14a873e13da6ad7 100644
|
| --- a/chrome/browser/extensions/extension_function_dispatcher.cc
|
| +++ b/chrome/browser/extensions/extension_function_dispatcher.cc
|
| @@ -250,7 +250,7 @@ ExtensionFunction* ExtensionFunctionDispatcher::CreateExtensionFunction(
|
| const extensions::ProcessMap& process_map,
|
| extensions::ExtensionAPI* api,
|
| void* profile,
|
| - IPC::Message::Sender* ipc_sender,
|
| + IPC::Sender* ipc_sender,
|
| int routing_id) {
|
| if (!extension) {
|
| LOG(ERROR) << "Specified extension does not exist.";
|
| @@ -288,7 +288,7 @@ ExtensionFunction* ExtensionFunctionDispatcher::CreateExtensionFunction(
|
|
|
| // static
|
| void ExtensionFunctionDispatcher::SendAccessDenied(
|
| - IPC::Message::Sender* ipc_sender, int routing_id, int request_id) {
|
| + IPC::Sender* ipc_sender, int routing_id, int request_id) {
|
| ListValue empty_list;
|
| ipc_sender->Send(new ExtensionMsg_Response(
|
| routing_id, request_id, false, empty_list,
|
|
|