OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "mojo/examples/pepper_container_app/plugin_instance.h" | 5 #include "mojo/examples/pepper_container_app/plugin_instance.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "mojo/examples/pepper_container_app/graphics_3d_resource.h" | 8 #include "mojo/examples/pepper_container_app/graphics_3d_resource.h" |
9 #include "mojo/examples/pepper_container_app/mojo_ppapi_globals.h" | 9 #include "mojo/examples/pepper_container_app/mojo_ppapi_globals.h" |
10 #include "ppapi/c/pp_errors.h" | 10 #include "ppapi/c/pp_errors.h" |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 uint32_t event_classes) { | 211 uint32_t event_classes) { |
212 NOTIMPLEMENTED(); | 212 NOTIMPLEMENTED(); |
213 return PP_ERROR_FAILED; | 213 return PP_ERROR_FAILED; |
214 } | 214 } |
215 | 215 |
216 void PluginInstance::ClearInputEventRequest(PP_Instance instance, | 216 void PluginInstance::ClearInputEventRequest(PP_Instance instance, |
217 uint32_t event_classes) { | 217 uint32_t event_classes) { |
218 NOTIMPLEMENTED(); | 218 NOTIMPLEMENTED(); |
219 } | 219 } |
220 | 220 |
| 221 void PluginInstance::StartTrackingLatency(PP_Instance instance) { |
| 222 NOTIMPLEMENTED(); |
| 223 } |
| 224 |
221 void PluginInstance::PostMessage(PP_Instance instance, PP_Var message) { | 225 void PluginInstance::PostMessage(PP_Instance instance, PP_Var message) { |
222 NOTIMPLEMENTED(); | 226 NOTIMPLEMENTED(); |
223 } | 227 } |
224 | 228 |
225 PP_Bool PluginInstance::SetCursor(PP_Instance instance, | 229 PP_Bool PluginInstance::SetCursor(PP_Instance instance, |
226 PP_MouseCursor_Type type, | 230 PP_MouseCursor_Type type, |
227 PP_Resource image, | 231 PP_Resource image, |
228 const PP_Point* hot_spot) { | 232 const PP_Point* hot_spot) { |
229 NOTIMPLEMENTED(); | 233 NOTIMPLEMENTED(); |
230 return PP_FALSE; | 234 return PP_FALSE; |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
375 } | 379 } |
376 | 380 |
377 PP_Var PluginInstance::GetPluginReferrerURL(PP_Instance instance, | 381 PP_Var PluginInstance::GetPluginReferrerURL(PP_Instance instance, |
378 PP_URLComponents_Dev* components) { | 382 PP_URLComponents_Dev* components) { |
379 NOTIMPLEMENTED(); | 383 NOTIMPLEMENTED(); |
380 return PP_MakeUndefined(); | 384 return PP_MakeUndefined(); |
381 } | 385 } |
382 | 386 |
383 } // namespace examples | 387 } // namespace examples |
384 } // namespace mojo | 388 } // namespace mojo |
OLD | NEW |