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

Side by Side Diff: ppapi/proxy/ppapi_messages.h

Issue 1114623002: Plugin Power Saver: Make PPS work well with prerendered pages. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 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
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 header, no traditional include guard. 5 // Multiply-included message header, no traditional include guard.
6 #include <map> 6 #include <map>
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 1189 matching lines...) Expand 10 before | Expand all | Expand 10 after
1200 ppapi::HostResource /* device_context_2d */, 1200 ppapi::HostResource /* device_context_2d */,
1201 ppapi::HostResource /* image */, 1201 ppapi::HostResource /* image */,
1202 PP_Point /* top_left */, 1202 PP_Point /* top_left */,
1203 PP_Bool /* result */) 1203 PP_Bool /* result */)
1204 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBTesting_GetLiveObjectsForInstance, 1204 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBTesting_GetLiveObjectsForInstance,
1205 PP_Instance /* instance */, 1205 PP_Instance /* instance */,
1206 uint32 /* result */) 1206 uint32 /* result */)
1207 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBTesting_IsPeripheral, 1207 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBTesting_IsPeripheral,
1208 PP_Instance /* instance */, 1208 PP_Instance /* instance */,
1209 PP_Bool /* result */) 1209 PP_Bool /* result */)
1210 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBTesting_IsThrottled,
1211 PP_Instance /* instance */,
1212 PP_Bool /* result */)
1210 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBTesting_SimulateInputEvent, 1213 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBTesting_SimulateInputEvent,
1211 PP_Instance /* instance */, 1214 PP_Instance /* instance */,
1212 ppapi::InputEventData /* input_event */) 1215 ppapi::InputEventData /* input_event */)
1213 IPC_SYNC_MESSAGE_ROUTED1_0( 1216 IPC_SYNC_MESSAGE_ROUTED1_0(
1214 PpapiHostMsg_PPBTesting_SetMinimumArrayBufferSizeForShmem, 1217 PpapiHostMsg_PPBTesting_SetMinimumArrayBufferSizeForShmem,
1215 uint32_t /* threshold */) 1218 uint32_t /* threshold */)
1216 1219
1217 #if !defined(OS_NACL) && !defined(NACL_WIN64) 1220 #if !defined(OS_NACL) && !defined(NACL_WIN64)
1218 1221
1219 // PPB_VideoDecoder_Dev. 1222 // PPB_VideoDecoder_Dev.
(...skipping 1127 matching lines...) Expand 10 before | Expand all | Expand 10 after
2347 std::vector<ppapi::HostResource> /* buffers */, 2350 std::vector<ppapi::HostResource> /* buffers */,
2348 uint32_t /* buffer_size */) 2351 uint32_t /* buffer_size */)
2349 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, 2352 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus,
2350 uint32_t /* status */) 2353 uint32_t /* status */)
2351 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, 2354 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError,
2352 uint32_t /* error */) 2355 uint32_t /* error */)
2353 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, 2356 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady,
2354 uint32_t /* buffer */) 2357 uint32_t /* buffer */)
2355 2358
2356 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 2359 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698