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

Unified Diff: webkit/plugins/ppapi/mock_plugin_delegate.cc

Issue 9455092: HostResolver is exposed to plugin. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Sync. Created 8 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: webkit/plugins/ppapi/mock_plugin_delegate.cc
diff --git a/webkit/plugins/ppapi/mock_plugin_delegate.cc b/webkit/plugins/ppapi/mock_plugin_delegate.cc
index 81a0690a8072e4ff32b543ff058dac34258dd023..51713efeb01f0f6e6015d2c77f6000a55a4e09a5 100644
--- a/webkit/plugins/ppapi/mock_plugin_delegate.cc
+++ b/webkit/plugins/ppapi/mock_plugin_delegate.cc
@@ -314,6 +314,20 @@ void MockPluginDelegate::TCPServerSocketStopListening(uint32 real_socket_id,
uint32 temp_socket_id) {
}
+void MockPluginDelegate::RegisterHostResolver(
+ ::ppapi::PPB_HostResolver_Shared* host_resolver,
+ uint32 host_resolver_id) {
+}
+
+void MockPluginDelegate::HostResolverResolve(
+ uint32 host_resolver_id,
+ const ::ppapi::HostPortPair& host_port,
+ const PP_HostResolver_Private_Hint* hint) {
+}
+
+void MockPluginDelegate::UnregisterHostResolver(uint32 host_resolver_id) {
+}
+
bool MockPluginDelegate::AddNetworkListObserver(
webkit_glue::NetworkListObserver* observer) {
return false;

Powered by Google App Engine
This is Rietveld 408576698