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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 int32_t total, | 165 int32_t total, |
166 PP_Bool final_result) { | 166 PP_Bool final_result) { |
167 NOTIMPLEMENTED(); | 167 NOTIMPLEMENTED(); |
168 } | 168 } |
169 | 169 |
170 void PluginInstance::SelectedFindResultChanged(PP_Instance instance, | 170 void PluginInstance::SelectedFindResultChanged(PP_Instance instance, |
171 int32_t index) { | 171 int32_t index) { |
172 NOTIMPLEMENTED(); | 172 NOTIMPLEMENTED(); |
173 } | 173 } |
174 | 174 |
| 175 void PluginInstance::SetTickmarks(PP_Instance instance, |
| 176 const PP_Rect* tickmarks, |
| 177 uint32_t count) { |
| 178 NOTIMPLEMENTED(); |
| 179 } |
| 180 |
175 PP_Bool PluginInstance::IsFullscreen(PP_Instance instance) { | 181 PP_Bool PluginInstance::IsFullscreen(PP_Instance instance) { |
176 NOTIMPLEMENTED(); | 182 NOTIMPLEMENTED(); |
177 return PP_FALSE; | 183 return PP_FALSE; |
178 } | 184 } |
179 | 185 |
180 PP_Bool PluginInstance::SetFullscreen(PP_Instance instance, | 186 PP_Bool PluginInstance::SetFullscreen(PP_Instance instance, |
181 PP_Bool fullscreen) { | 187 PP_Bool fullscreen) { |
182 NOTIMPLEMENTED(); | 188 NOTIMPLEMENTED(); |
183 return PP_FALSE; | 189 return PP_FALSE; |
184 } | 190 } |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
369 } | 375 } |
370 | 376 |
371 PP_Var PluginInstance::GetPluginReferrerURL(PP_Instance instance, | 377 PP_Var PluginInstance::GetPluginReferrerURL(PP_Instance instance, |
372 PP_URLComponents_Dev* components) { | 378 PP_URLComponents_Dev* components) { |
373 NOTIMPLEMENTED(); | 379 NOTIMPLEMENTED(); |
374 return PP_MakeUndefined(); | 380 return PP_MakeUndefined(); |
375 } | 381 } |
376 | 382 |
377 } // namespace examples | 383 } // namespace examples |
378 } // namespace mojo | 384 } // namespace mojo |
OLD | NEW |