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

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

Issue 1685213002: Propagate window coordinates to out-of-process iframes renderers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@sendscreenrects
Patch Set: fixing ordering in DepictFrameTree Created 4 years, 10 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
OLDNEW
(Empty)
1 // Copyright (c) 2016 The Chromium Authors. All rights reserved.
nasko 2016/02/11 18:21:28 styleL: No "(c)".
lfg 2016/02/11 20:26:09 Done.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "ipc/ipc_message_macros.h"
6
7 // IPC messages for page-level concepts.
nasko 2016/02/11 18:21:28 nit: s/concepts/actions/
lfg 2016/02/11 20:26:09 Done.
8 // Multiply-included message file, hence no include guard.
9
10 #undef IPC_MESSAGE_EXPORT
11 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT
12
13 #define IPC_MESSAGE_START PageMsgStart
14
15 // Messages sent from the browser to the renderer.
16
17 IPC_MESSAGE_ROUTED1(PageMsg_UpdateWindowScreenRect,
18 gfx::Rect /* window_screen_rect */)
19
20 // -----------------------------------------------------------------------------
21 // Messages sent from the renderer to the browser.
22
23 // Adding a new message? Stick to the sort order above: first platform
24 // independent PageMsg, then ifdefs for platform specific PageMsg, then platform
25 // independent PageHostMsg, then ifdefs for platform specific PageHostMsg.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698