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

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

Issue 11827034: Update some #includes in chrome/common for headers in the new Platform directory (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 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
« no previous file with comments | « chrome/common/localized_error.cc ('k') | chrome/common/web_apps.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 // Multiply-included message file, no traditional include guard. 5 // Multiply-included message file, no traditional include guard.
6 #include "content/public/common/common_param_traits.h" 6 #include "content/public/common/common_param_traits.h"
7 #include "content/public/common/referrer.h" 7 #include "content/public/common/referrer.h"
8 #include "googleurl/src/gurl.h" 8 #include "googleurl/src/gurl.h"
9 #include "ipc/ipc_message.h" 9 #include "ipc/ipc_message.h"
10 #include "ipc/ipc_message_macros.h" 10 #include "ipc/ipc_message_macros.h"
11 #include "ipc/ipc_param_traits.h" 11 #include "ipc/ipc_param_traits.h"
12 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebReferrerP olicy.h" 12 #include "third_party/WebKit/Source/Platform/chromium/public/WebReferrerPolicy.h "
13 #include "ui/gfx/size.h" 13 #include "ui/gfx/size.h"
14 14
15 #define IPC_MESSAGE_START PrerenderMsgStart 15 #define IPC_MESSAGE_START PrerenderMsgStart
16 16
17 // PrerenderLinkManager Messages 17 // PrerenderLinkManager Messages
18 // These are messages sent from the renderer to the browser in 18 // These are messages sent from the renderer to the browser in
19 // relation to <link rel=prerender> elements. 19 // relation to <link rel=prerender> elements.
20 20
21 // Notifies of the insertion of a <link rel=prerender> element in the 21 // Notifies of the insertion of a <link rel=prerender> element in the
22 // document. 22 // document.
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 int /* prerender_id */) 54 int /* prerender_id */)
55 55
56 // Signals to a launcher that a new alias has been added to a prerender. 56 // Signals to a launcher that a new alias has been added to a prerender.
57 IPC_MESSAGE_CONTROL2(PrerenderMsg_OnPrerenderAddAlias, 57 IPC_MESSAGE_CONTROL2(PrerenderMsg_OnPrerenderAddAlias,
58 int /* prerender_id */, 58 int /* prerender_id */,
59 GURL /* url */) 59 GURL /* url */)
60 60
61 // Signals to a launcher that a prerender is no longer running. 61 // Signals to a launcher that a prerender is no longer running.
62 IPC_MESSAGE_CONTROL1(PrerenderMsg_OnPrerenderStop, 62 IPC_MESSAGE_CONTROL1(PrerenderMsg_OnPrerenderStop,
63 int /* prerender_id */) 63 int /* prerender_id */)
OLDNEW
« no previous file with comments | « chrome/common/localized_error.cc ('k') | chrome/common/web_apps.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698