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

Side by Side Diff: chrome/common/extensions/extension_messages.h

Issue 8530003: Delete the temporary file when generating MHTML with the extension API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Clean-up Created 9 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // IPC messages for extensions. 5 // IPC messages for extensions.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include "base/shared_memory.h" 8 #include "base/shared_memory.h"
9 #include "base/values.h" 9 #include "base/values.h"
10 #include "chrome/common/extensions/extension.h" 10 #include "chrome/common/extensions/extension.h"
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 std::string /* error */) 341 std::string /* error */)
342 342
343 // Sent by the renderer when an App is requesting permission to send server 343 // Sent by the renderer when an App is requesting permission to send server
344 // pushed notifications. 344 // pushed notifications.
345 IPC_MESSAGE_ROUTED4(ExtensionHostMsg_GetAppNotifyChannel, 345 IPC_MESSAGE_ROUTED4(ExtensionHostMsg_GetAppNotifyChannel,
346 GURL /* requestor_url */, 346 GURL /* requestor_url */,
347 std::string /* client_id */, 347 std::string /* client_id */,
348 int32 /* return_route_id */, 348 int32 /* return_route_id */,
349 int32 /* callback_id */) 349 int32 /* callback_id */)
350 350
351 // Optional Ack message sent to the browser to notify that the response to a
352 // function has been processed.
353 IPC_MESSAGE_ROUTED1(ExtensionHostMsg_ResponseAck,
354 int /* request_id */)
355
351 // Response to the renderer for the above message. 356 // Response to the renderer for the above message.
352 IPC_MESSAGE_ROUTED3(ExtensionMsg_GetAppNotifyChannelResponse, 357 IPC_MESSAGE_ROUTED3(ExtensionMsg_GetAppNotifyChannelResponse,
353 std::string /* channel_id */, 358 std::string /* channel_id */,
354 std::string /* error */, 359 std::string /* error */,
355 int32 /* callback_id */) 360 int32 /* callback_id */)
356 361
357 // Deliver a message sent with ExtensionHostMsg_PostMessage. 362 // Deliver a message sent with ExtensionHostMsg_PostMessage.
358 IPC_MESSAGE_ROUTED2(ExtensionMsg_DeliverMessage, 363 IPC_MESSAGE_ROUTED2(ExtensionMsg_DeliverMessage,
359 int /* target_port_id */, 364 int /* target_port_id */,
360 std::string /* message */) 365 std::string /* message */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698