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

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

Issue 6928021: Make ViewHostMsg_Keygen a routed ipc (part 1/2). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 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
« no previous file with comments | « no previous file | content/renderer/render_view.h » ('j') | content/renderer/render_view.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 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/process.h" 8 #include "base/process.h"
9 #include "base/shared_memory.h" 9 #include "base/shared_memory.h"
10 #include "content/common/common_param_traits.h" 10 #include "content/common/common_param_traits.h"
(...skipping 1860 matching lines...) Expand 10 before | Expand all | Expand 10 after
1871 int /* message_id */) 1871 int /* message_id */)
1872 1872
1873 //--------------------------------------------------------------------------- 1873 //---------------------------------------------------------------------------
1874 // Request for cryptographic operation messages: 1874 // Request for cryptographic operation messages:
1875 // These are messages from the renderer to the browser to perform a 1875 // These are messages from the renderer to the browser to perform a
1876 // cryptographic operation. 1876 // cryptographic operation.
1877 1877
1878 // Asks the browser process to generate a keypair for grabbing a client 1878 // Asks the browser process to generate a keypair for grabbing a client
1879 // certificate from a CA (<keygen> tag), and returns the signed public 1879 // certificate from a CA (<keygen> tag), and returns the signed public
1880 // key and challenge string. 1880 // key and challenge string.
1881 IPC_SYNC_MESSAGE_CONTROL3_1(ViewHostMsg_Keygen, 1881 IPC_SYNC_MESSAGE_ROUTED3_1(ViewHostMsg_Keygen,
1882 uint32 /* key size index */, 1882 uint32 /* key size index */,
1883 std::string /* challenge string */, 1883 std::string /* challenge string */,
1884 GURL /* URL of requestor */, 1884 GURL /* URL of requestor */,
1885 std::string /* signed public key and challenge */) 1885 std::string /* signed public key and challenge */)
1886 1886
1887 // Message sent from the renderer to the browser to request that the browser 1887 // Message sent from the renderer to the browser to request that the browser
1888 // close all sockets. Used for debugging/testing. 1888 // close all sockets. Used for debugging/testing.
1889 IPC_MESSAGE_CONTROL0(ViewHostMsg_CloseCurrentConnections) 1889 IPC_MESSAGE_CONTROL0(ViewHostMsg_CloseCurrentConnections)
1890 1890
1891 // Message sent from the renderer to the browser to request that the browser 1891 // Message sent from the renderer to the browser to request that the browser
1892 // enable or disable the cache. Used for debugging/testing. 1892 // enable or disable the cache. Used for debugging/testing.
1893 IPC_MESSAGE_CONTROL1(ViewHostMsg_SetCacheMode, 1893 IPC_MESSAGE_CONTROL1(ViewHostMsg_SetCacheMode,
1894 bool /* enabled */) 1894 bool /* enabled */)
1895 1895
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
1952 1952
1953 // Stores new inspector setting in the profile. 1953 // Stores new inspector setting in the profile.
1954 // TODO(jam): this should be in the chrome module 1954 // TODO(jam): this should be in the chrome module
1955 IPC_MESSAGE_ROUTED2(ViewHostMsg_UpdateInspectorSetting, 1955 IPC_MESSAGE_ROUTED2(ViewHostMsg_UpdateInspectorSetting,
1956 std::string, /* key */ 1956 std::string, /* key */
1957 std::string /* value */) 1957 std::string /* value */)
1958 1958
1959 // Send back a string to be recorded by UserMetrics. 1959 // Send back a string to be recorded by UserMetrics.
1960 IPC_MESSAGE_CONTROL1(ViewHostMsg_UserMetricsRecordAction, 1960 IPC_MESSAGE_CONTROL1(ViewHostMsg_UserMetricsRecordAction,
1961 std::string /* action */) 1961 std::string /* action */)
OLDNEW
« no previous file with comments | « no previous file | content/renderer/render_view.h » ('j') | content/renderer/render_view.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698