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

Side by Side Diff: content/common/view_messages.h

Issue 365513002: Port identity_internals to mojo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sky fixes Created 6 years, 5 months 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 page rendering. 5 // IPC messages for page rendering.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include "base/memory/shared_memory.h" 8 #include "base/memory/shared_memory.h"
9 #include "base/process/process.h" 9 #include "base/process/process.h"
10 #include "base/strings/string16.h" 10 #include "base/strings/string16.h"
(...skipping 1435 matching lines...) Expand 10 before | Expand all | Expand 10 after
1446 1446
1447 IPC_MESSAGE_ROUTED3( 1447 IPC_MESSAGE_ROUTED3(
1448 ViewHostMsg_SwapCompositorFrame, 1448 ViewHostMsg_SwapCompositorFrame,
1449 uint32 /* output_surface_id */, 1449 uint32 /* output_surface_id */,
1450 cc::CompositorFrame /* frame */, 1450 cc::CompositorFrame /* frame */,
1451 std::vector<IPC::Message> /* messages_to_deliver_with_frame */) 1451 std::vector<IPC::Message> /* messages_to_deliver_with_frame */)
1452 1452
1453 // Sent by the compositor when a flinging animation is stopped. 1453 // Sent by the compositor when a flinging animation is stopped.
1454 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidStopFlinging) 1454 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidStopFlinging)
1455 1455
1456 // Sent when a WebUI page that uses Mojo has executed its 'main' module. Our
1457 // javascript based testing framework must wait until this has happened.
1458 IPC_MESSAGE_ROUTED0(ViewHostMsg_WebUIMojoMainRan)
jam 2014/07/25 21:29:58 this should go to frame_messages.h
1459
1456 //--------------------------------------------------------------------------- 1460 //---------------------------------------------------------------------------
1457 // Request for cryptographic operation messages: 1461 // Request for cryptographic operation messages:
1458 // These are messages from the renderer to the browser to perform a 1462 // These are messages from the renderer to the browser to perform a
1459 // cryptographic operation. 1463 // cryptographic operation.
1460 1464
1461 // Asks the browser process to generate a keypair for grabbing a client 1465 // Asks the browser process to generate a keypair for grabbing a client
1462 // certificate from a CA (<keygen> tag), and returns the signed public 1466 // certificate from a CA (<keygen> tag), and returns the signed public
1463 // key and challenge string. 1467 // key and challenge string.
1464 IPC_SYNC_MESSAGE_CONTROL3_1(ViewHostMsg_Keygen, 1468 IPC_SYNC_MESSAGE_CONTROL3_1(ViewHostMsg_Keygen,
1465 uint32 /* key size index */, 1469 uint32 /* key size index */,
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
1688 // Since the browser keeps handles to the allocated transport DIBs, this 1692 // Since the browser keeps handles to the allocated transport DIBs, this
1689 // message is sent to tell the browser that it may release them when the 1693 // message is sent to tell the browser that it may release them when the
1690 // renderer is finished with them. 1694 // renderer is finished with them.
1691 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB, 1695 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB,
1692 TransportDIB::Id /* DIB id */) 1696 TransportDIB::Id /* DIB id */)
1693 #endif 1697 #endif
1694 1698
1695 // Adding a new message? Stick to the sort order above: first platform 1699 // Adding a new message? Stick to the sort order above: first platform
1696 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform 1700 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform
1697 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. 1701 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698