OLD | NEW |
---|---|
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 "content/renderer/pepper/fake_pepper_plugin_instance.h" | 5 #include "content/renderer/pepper/fake_pepper_plugin_instance.h" |
6 | 6 |
7 #include "ppapi/c/pp_errors.h" | 7 #include "ppapi/c/pp_errors.h" |
8 #include "ppapi/shared_impl/ppapi_permissions.h" | 8 #include "ppapi/shared_impl/ppapi_permissions.h" |
9 | 9 |
10 namespace content { | 10 namespace content { |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
67 } | 67 } |
68 | 68 |
69 void FakePepperPluginInstance::SetEmbedProperty(PP_Var key, PP_Var value) {} | 69 void FakePepperPluginInstance::SetEmbedProperty(PP_Var key, PP_Var value) {} |
70 | 70 |
71 void FakePepperPluginInstance::SetSelectedText( | 71 void FakePepperPluginInstance::SetSelectedText( |
72 const base::string16& selected_text) {} | 72 const base::string16& selected_text) {} |
73 | 73 |
74 void FakePepperPluginInstance::SetLinkUnderCursor(const std::string& url) {} | 74 void FakePepperPluginInstance::SetLinkUnderCursor(const std::string& url) {} |
75 void FakePepperPluginInstance::SetTextInputType(ui::TextInputType type) {} | 75 void FakePepperPluginInstance::SetTextInputType(ui::TextInputType type) {} |
76 void FakePepperPluginInstance::PostMessageToJavaScript(PP_Var message) {} | 76 void FakePepperPluginInstance::PostMessageToJavaScript(PP_Var message) {} |
77 #ifdef V8_USE_EXTERNAL_STARTUP_DATA | |
raymes
2014/11/10 03:29:06
and this
baixo1
2014/11/10 15:59:48
Done.
| |
78 void FakePepperPluginInstance::GetV8ExternalSnapshotData( | |
79 const char** natives_data_out, int* natives_size_out, | |
80 const char** snapshot_data_out, int* snapshot_size_out) const {} | |
81 #endif | |
77 | 82 |
78 | 83 |
79 } // namespace content | 84 } // namespace content |
OLD | NEW |