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

Unified Diff: cloud_print/service/win/service_listener.cc

Issue 606443003: Remove implicit HANDLE conversions from cloud_print. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « cloud_print/service/win/service_controller.cc ('k') | cloud_print/service/win/setup_listener.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cloud_print/service/win/service_listener.cc
diff --git a/cloud_print/service/win/service_listener.cc b/cloud_print/service/win/service_listener.cc
index a022cb3b1d5cfebf0a14bcdab1b3d3395531c98e..0aaf0f305848d531318f0a293f19b23841129cfc 100644
--- a/cloud_print/service/win/service_listener.cc
+++ b/cloud_print/service/win/service_listener.cc
@@ -91,7 +91,7 @@ void ServiceListener::Connect() {
SECURITY_SQOS_PRESENT | SECURITY_IDENTIFICATION |
FILE_FLAG_OVERLAPPED, NULL));
if (handle.IsValid()) {
- channel_ = IPC::Channel::CreateClient(IPC::ChannelHandle(handle),
+ channel_ = IPC::Channel::CreateClient(IPC::ChannelHandle(handle.Get()),
this);
channel_->Connect();
} else {
« no previous file with comments | « cloud_print/service/win/service_controller.cc ('k') | cloud_print/service/win/setup_listener.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698