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

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

Issue 10388045: Exposes OrientationChangeEvent. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Exposes on RVHImpl only. Created 8 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 (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 // IPC messages for page rendering. 5 // IPC messages for page rendering.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include "base/process.h" 8 #include "base/process.h"
9 #include "base/shared_memory.h" 9 #include "base/shared_memory.h"
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
(...skipping 2016 matching lines...) Expand 10 before | Expand all | Expand 10 after
2027 int /* automation_id */) 2027 int /* automation_id */)
2028 2028
2029 // Sent to the browser when the renderer detects it is blocked on a pepper 2029 // Sent to the browser when the renderer detects it is blocked on a pepper
2030 // plugin message for too long. This is also sent when it becomes unhung 2030 // plugin message for too long. This is also sent when it becomes unhung
2031 // (according to the value of is_hung). The browser can give the user the 2031 // (according to the value of is_hung). The browser can give the user the
2032 // option of killing the plugin. 2032 // option of killing the plugin.
2033 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, 2033 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung,
2034 int /* plugin_child_id */, 2034 int /* plugin_child_id */,
2035 FilePath /* path */, 2035 FilePath /* path */,
2036 bool /* is_hung */) 2036 bool /* is_hung */)
2037
2038 // Screen was rotated. Dispatched to the onorientationchange javascript API.
2039 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent,
2040 int /* orientation */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698