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

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

Issue 7885013: Move the ViewHostMsg_ClearPredictorCache out of content into chrome as this functionality is chro... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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 | « chrome/chrome_renderer.gypi ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 // Multiply-included file, no traditional include guard.
6
7 #include <string>
8
9 #include "base/basictypes.h"
10 #include "build/build_config.h"
11
12 #include "ipc/ipc_message_macros.h"
13 #include "ui/gfx/native_widget_types.h"
14
15 #define IPC_MESSAGE_START ChromeBenchmarkingMsgStart
16
17 // Message sent from the renderer to the browser to request that the browser
18 // close all sockets. Used for debugging/testing.
19 IPC_MESSAGE_CONTROL0(ChromeViewHostMsg_CloseCurrentConnections)
20
21 // Message sent from the renderer to the browser to request that the browser
22 // enable or disable the cache. Used for debugging/testing.
23 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_SetCacheMode,
24 bool /* enabled */)
25
26 // Message sent from the renderer to the browser to request that the browser
27 // clear the cache. Used for debugging/testing.
28 // |preserve_ssl_host_info| controls whether clearing the cache will preserve
29 // persisted SSL information stored in the cache.
30 // |result| is the returned status from the operation.
31 IPC_SYNC_MESSAGE_CONTROL1_1(ChromeViewHostMsg_ClearCache,
32 bool /* preserve_ssl_host_info */,
33 int /* result */)
34
35 // Message sent from the renderer to the browser to request that the browser
36 // clear the host cache. Used for debugging/testing.
37 // |result| is the returned status from the operation.
38 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_ClearHostResolverCache,
39 int /* result */)
40
41 // Message sent from the renderer to the browser to request that the browser
42 // enable or disable spdy. Used for debugging/testing/benchmarking.
43 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_EnableSpdy,
44 bool /* enable */)
45
46 // Message sent from the renderer to the browser to request that the browser
47 // clear the predictor cache. Used for debugging/testing.
48 // |result| is the returned status from the operation.
49 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_ClearPredictorCache,
50 int /* result */)
OLDNEW
« no previous file with comments | « chrome/chrome_renderer.gypi ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698