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

Side by Side Diff: ppapi/proxy/dispatcher.cc

Issue 7826017: Add PPB_Fullscreen;0.5. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #include "ppapi/proxy/dispatcher.h" 5 #include "ppapi/proxy/dispatcher.h"
6 6
7 #include <string.h> // For memset. 7 #include <string.h> // For memset.
8 8
9 #include <map> 9 #include <map>
10 10
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 AddPPB(PPB_Graphics3D_Proxy::GetInfo()); 146 AddPPB(PPB_Graphics3D_Proxy::GetInfo());
147 AddPPB(PPB_ImageData_Proxy::GetInfo()); 147 AddPPB(PPB_ImageData_Proxy::GetInfo());
148 AddPPB(PPB_InputEvent_Proxy::GetInputEventInfo()); 148 AddPPB(PPB_InputEvent_Proxy::GetInputEventInfo());
149 AddPPB(PPB_InputEvent_Proxy::GetKeyboardInputEventInfo()); 149 AddPPB(PPB_InputEvent_Proxy::GetKeyboardInputEventInfo());
150 AddPPB(PPB_InputEvent_Proxy::GetMouseInputEventInfo1_0()); 150 AddPPB(PPB_InputEvent_Proxy::GetMouseInputEventInfo1_0());
151 AddPPB(PPB_InputEvent_Proxy::GetMouseInputEventInfo1_1()); 151 AddPPB(PPB_InputEvent_Proxy::GetMouseInputEventInfo1_1());
152 AddPPB(PPB_InputEvent_Proxy::GetWheelInputEventInfo()); 152 AddPPB(PPB_InputEvent_Proxy::GetWheelInputEventInfo());
153 AddPPB(PPB_Instance_Proxy::GetInfo0_5()); 153 AddPPB(PPB_Instance_Proxy::GetInfo0_5());
154 AddPPB(PPB_Instance_Proxy::GetInfo1_0()); 154 AddPPB(PPB_Instance_Proxy::GetInfo1_0());
155 AddPPB(PPB_Instance_Proxy::GetInfoFullscreen()); 155 AddPPB(PPB_Instance_Proxy::GetInfoFullscreen());
156 AddPPB(PPB_Instance_Proxy::GetInfoFullscreen_Dev());
156 AddPPB(PPB_Instance_Proxy::GetInfoMessaging()); 157 AddPPB(PPB_Instance_Proxy::GetInfoMessaging());
157 AddPPB(PPB_Instance_Proxy::GetInfoPrivate()); 158 AddPPB(PPB_Instance_Proxy::GetInfoPrivate());
158 AddPPB(PPB_Memory_Proxy::GetInfo()); 159 AddPPB(PPB_Memory_Proxy::GetInfo());
159 AddPPB(PPB_OpenGLES2_Proxy::GetInfo()); 160 AddPPB(PPB_OpenGLES2_Proxy::GetInfo());
160 AddPPB(PPB_PDF_Proxy::GetInfo()); 161 AddPPB(PPB_PDF_Proxy::GetInfo());
161 AddPPB(PPB_Surface3D_Proxy::GetInfo()); 162 AddPPB(PPB_Surface3D_Proxy::GetInfo());
162 AddPPB(PPB_Testing_Proxy::GetInfo()); 163 AddPPB(PPB_Testing_Proxy::GetInfo());
163 AddPPB(PPB_URLLoader_Proxy::GetInfo()); 164 AddPPB(PPB_URLLoader_Proxy::GetInfo());
164 AddPPB(PPB_URLLoader_Proxy::GetTrustedInfo()); 165 AddPPB(PPB_URLLoader_Proxy::GetTrustedInfo());
165 AddPPB(PPB_URLRequestInfo_Proxy::GetInfo()); 166 AddPPB(PPB_URLRequestInfo_Proxy::GetInfo());
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 return delegate()->GetIPCMessageLoop(); 280 return delegate()->GetIPCMessageLoop();
280 } 281 }
281 282
282 void Dispatcher::AddIOThreadMessageFilter( 283 void Dispatcher::AddIOThreadMessageFilter(
283 IPC::ChannelProxy::MessageFilter* filter) { 284 IPC::ChannelProxy::MessageFilter* filter) {
284 channel()->AddFilter(filter); 285 channel()->AddFilter(filter);
285 } 286 }
286 287
287 } // namespace proxy 288 } // namespace proxy
288 } // namespace ppapi 289 } // namespace ppapi
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698