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

Side by Side Diff: chrome/common/benchmarking_messages.h

Issue 135373002: Added SSLHostInfo. Storing of server host info to our standard disk cache. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge with TOT Created 6 years, 11 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) 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 // Multiply-included file, no traditional include guard. 5 // Multiply-included file, no traditional include guard.
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 10 matching lines...) Expand all
21 // issue further network requests before it completes. 21 // issue further network requests before it completes.
22 IPC_SYNC_MESSAGE_CONTROL0_0(ChromeViewHostMsg_CloseCurrentConnections) 22 IPC_SYNC_MESSAGE_CONTROL0_0(ChromeViewHostMsg_CloseCurrentConnections)
23 23
24 // Message sent from the renderer to the browser to request that the browser 24 // Message sent from the renderer to the browser to request that the browser
25 // enable or disable the cache. Used for debugging/testing. 25 // enable or disable the cache. Used for debugging/testing.
26 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_SetCacheMode, 26 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_SetCacheMode,
27 bool /* enabled */) 27 bool /* enabled */)
28 28
29 // Message sent from the renderer to the browser to request that the browser 29 // Message sent from the renderer to the browser to request that the browser
30 // clear the cache. Used for debugging/testing. 30 // clear the cache. Used for debugging/testing.
31 // |preserve_ssl_host_info| controls whether clearing the cache will preserve
32 // persisted SSL information stored in the cache.
31 // |result| is the returned status from the operation. 33 // |result| is the returned status from the operation.
32 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_ClearCache, 34 IPC_SYNC_MESSAGE_CONTROL1_1(ChromeViewHostMsg_ClearCache,
35 bool /* preserve_ssl_host_info */,
33 int /* result */) 36 int /* result */)
34 37
35 // Message sent from the renderer to the browser to request that the browser 38 // Message sent from the renderer to the browser to request that the browser
36 // clear the host cache. Used for debugging/testing. 39 // clear the host cache. Used for debugging/testing.
37 // |result| is the returned status from the operation. 40 // |result| is the returned status from the operation.
38 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_ClearHostResolverCache, 41 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_ClearHostResolverCache,
39 int /* result */) 42 int /* result */)
40 43
41 // Message sent from the renderer to the browser to request that the browser 44 // Message sent from the renderer to the browser to request that the browser
42 // enable or disable spdy. Used for debugging/testing/benchmarking. 45 // enable or disable spdy. Used for debugging/testing/benchmarking.
43 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_EnableSpdy, 46 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_EnableSpdy,
44 bool /* enable */) 47 bool /* enable */)
45 48
46 // Message sent from the renderer to the browser to request that the browser 49 // Message sent from the renderer to the browser to request that the browser
47 // clear the predictor cache. Used for debugging/testing. 50 // clear the predictor cache. Used for debugging/testing.
48 // |result| is the returned status from the operation. 51 // |result| is the returned status from the operation.
49 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_ClearPredictorCache, 52 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_ClearPredictorCache,
50 int /* result */) 53 int /* result */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698