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

Side by Side Diff: ui/metro_viewer/metro_viewer_messages.h

Issue 15599002: Fix Ash on Windows multi-monitor support and snap-view sizing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use unsigned ints to pass window size. Created 7 years, 7 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 | « ui/aura/remote_root_window_host_win.cc ('k') | win8/metro_driver/chrome_app_view_ash.h » ('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 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 include guard. 5 // Multiply-included message file, no include guard.
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "ipc/ipc_message_macros.h" 10 #include "ipc/ipc_message_macros.h"
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 bool) /* active */ 138 bool) /* active */
139 139
140 // Sent to the viewer process to set the cursor position. 140 // Sent to the viewer process to set the cursor position.
141 IPC_MESSAGE_CONTROL2(MetroViewerHostMsg_SetCursorPos, 141 IPC_MESSAGE_CONTROL2(MetroViewerHostMsg_SetCursorPos,
142 int, /* x */ 142 int, /* x */
143 int) /* y */ 143 int) /* y */
144 144
145 // Ack sent by the viewer process indicating that the SetCursorPos operation 145 // Ack sent by the viewer process indicating that the SetCursorPos operation
146 // was completed. 146 // was completed.
147 IPC_MESSAGE_CONTROL0(MetroViewerHostMsg_SetCursorPosAck) 147 IPC_MESSAGE_CONTROL0(MetroViewerHostMsg_SetCursorPosAck)
148
149 // Sent from the metro viewer process to the browser process to indicate that
150 // the viewer window size has changed.
151 IPC_MESSAGE_CONTROL2(MetroViewerHostMsg_WindowSizeChanged,
152 uint32, /* width */
153 uint32) /* height */
OLDNEW
« no previous file with comments | « ui/aura/remote_root_window_host_win.cc ('k') | win8/metro_driver/chrome_app_view_ash.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698