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

Unified Diff: chrome/browser/printing/cloud_print/virtual_driver_install_helper.cc

Issue 8620001: Cleanup pass from Cloud Print Proxy policy implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
Index: chrome/browser/printing/cloud_print/virtual_driver_install_helper.cc
diff --git a/chrome/browser/printing/cloud_print/virtual_driver_install_helper.cc b/chrome/browser/printing/cloud_print/virtual_driver_install_helper.cc
index 372332d3405a5782cad82376d6dee9bba7aa1766..83160984bb13853339b47cc1177c9c3d8a46ddd6 100644
--- a/chrome/browser/printing/cloud_print/virtual_driver_install_helper.cc
+++ b/chrome/browser/printing/cloud_print/virtual_driver_install_helper.cc
@@ -31,16 +31,15 @@ void VirtualDriverInstallHelper::SetUpUninstall() {
void VirtualDriverInstallHelper::InstallVirtualDriverTask() {
ServiceProcessControl* process_control =
ServiceProcessControl::GetInstance();
- DCHECK(process_control->is_connected());
+ DCHECK(process_control->IsConnected());
process_control->Send(new ServiceMsg_EnableVirtualDriver());
}
void VirtualDriverInstallHelper::UninstallVirtualDriverTask() {
ServiceProcessControl* process_control =
ServiceProcessControl::GetInstance();
- DCHECK(process_control->is_connected());
+ DCHECK(process_control->IsConnected());
process_control->Send(new ServiceMsg_DisableVirtualDriver());
}
} // namespace cloud_print
-

Powered by Google App Engine
This is Rietveld 408576698