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

Unified Diff: chrome/browser/extensions/extension_function_dispatcher.cc

Issue 8743017: Real (but naive) UDP socket sending. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Initial. Created 9 years, 1 month 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
« no previous file with comments | « no previous file | chrome/browser/extensions/socket_api.h » ('j') | chrome/browser/extensions/socket_api.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_function_dispatcher.cc
diff --git a/chrome/browser/extensions/extension_function_dispatcher.cc b/chrome/browser/extensions/extension_function_dispatcher.cc
index 7ee1a19e0f092e1ef08354f1f849d13f3d8d10e5..44dae30caf5bcc226339558b68bc877fee656c97 100644
--- a/chrome/browser/extensions/extension_function_dispatcher.cc
+++ b/chrome/browser/extensions/extension_function_dispatcher.cc
@@ -472,9 +472,10 @@ void FactoryRegistry::ResetFunctions() {
// Sockets
RegisterFunction<extensions::SocketCreateFunction>();
+ RegisterFunction<extensions::SocketDestroyFunction>();
RegisterFunction<extensions::SocketConnectFunction>();
- RegisterFunction<extensions::SocketDisconnectFunction>();
- RegisterFunction<extensions::SocketSendFunction>();
+ RegisterFunction<extensions::SocketCloseFunction>();
+ RegisterFunction<extensions::SocketWriteFunction>();
}
void FactoryRegistry::GetAllNames(std::vector<std::string>* names) {
« no previous file with comments | « no previous file | chrome/browser/extensions/socket_api.h » ('j') | chrome/browser/extensions/socket_api.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698