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

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: Cleanup. 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
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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 bool) /* allow_multi_select */ 129 bool) /* allow_multi_select */
130 130
131 // Requests the viewer to display the select folder dialog. 131 // Requests the viewer to display the select folder dialog.
132 IPC_MESSAGE_CONTROL1(MetroViewerHostMsg_DisplaySelectFolder, 132 IPC_MESSAGE_CONTROL1(MetroViewerHostMsg_DisplaySelectFolder,
133 string16) /* title */ 133 string16) /* title */
134 134
135 // Informs the browser about the viewer activation state, i.e. active, lost 135 // Informs the browser about the viewer activation state, i.e. active, lost
136 // activation etc. 136 // activation etc.
137 IPC_MESSAGE_CONTROL1(MetroViewerHostMsg_WindowActivated, 137 IPC_MESSAGE_CONTROL1(MetroViewerHostMsg_WindowActivated,
138 bool) /* active */ 138 bool) /* active */
139
140 // Lets the browser know that the viewer window changed size.
141 IPC_MESSAGE_CONTROL2(MetroViewerHostMsg_WindowSizeChanged,
142 int32, /* width */
143 int32) /* height */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698