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

Unified Diff: ppapi/proxy/ppb_instance_proxy.cc

Issue 12220050: Provide a way to disable Nagle's algorithm on Pepper TCP sockets. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add missing completion callback implementation. Created 7 years, 10 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: ppapi/proxy/ppb_instance_proxy.cc
diff --git a/ppapi/proxy/ppb_instance_proxy.cc b/ppapi/proxy/ppb_instance_proxy.cc
index 00c6942644605ff6bc0a95dacda411b64a501ae7..a2af5b7c2bdfb16c5ae8b0266984ac188ef435f0 100644
--- a/ppapi/proxy/ppb_instance_proxy.cc
+++ b/ppapi/proxy/ppb_instance_proxy.cc
@@ -1145,8 +1145,6 @@ void PPB_Instance_Proxy::OnHostMsgSetCursor(
int32_t type,
const ppapi::HostResource& custom_image,
const PP_Point& hot_spot) {
- if (!dispatcher()->permissions().HasPermission(PERMISSION_DEV))
yzshen1 2013/02/08 21:51:11 Is this caused by a sync? It seems to have nothing
Wez 2013/02/10 04:47:02 Mix up w/ a branch for an un-related CL. :(
- return;
EnterInstanceNoLock enter(instance);
if (enter.succeeded()) {
enter.functions()->SetCursor(

Powered by Google App Engine
This is Rietveld 408576698