| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 */) |
| OLD | NEW |