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

Unified Diff: chrome/service/cloud_print/print_system_win.cc

Issue 2824773002: Rename ScopedComPtr::get() to ScopedComPtr::Get() (Closed)
Patch Set: Update to 5293966 Created 3 years, 8 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 | « chrome/installer/util/wmi.cc ('k') | chrome/utility/importer/ie_importer_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/service/cloud_print/print_system_win.cc
diff --git a/chrome/service/cloud_print/print_system_win.cc b/chrome/service/cloud_print/print_system_win.cc
index 292aa689014e3e4616a7ede2b5ebd4c2ba52610c..c3679e1c37cb9e26f4811a79b36e373bbf868ad3 100644
--- a/chrome/service/cloud_print/print_system_win.cc
+++ b/chrome/service/cloud_print/print_system_win.cc
@@ -361,7 +361,7 @@ class JobSpoolerWin : public PrintSystem::JobSpooler {
// base::win::ObjectWatcher::Delegate implementation.
void OnObjectSignaled(HANDLE object) override {
- DCHECK(xps_print_job_.get());
+ DCHECK(xps_print_job_.Get());
DCHECK(object == job_progress_event_.Get());
ResetEvent(job_progress_event_.Get());
if (!delegate_)
@@ -395,7 +395,7 @@ class JobSpoolerWin : public PrintSystem::JobSpooler {
: job_ptr_(job_ptr) {
}
~PrintJobCanceler() {
- if (job_ptr_ && job_ptr_->get()) {
+ if (job_ptr_ && job_ptr_->Get()) {
(*job_ptr_)->Cancel();
job_ptr_->Reset();
}
@@ -748,10 +748,10 @@ bool PrintSystemWin::ValidatePrintTicket(
CreateStreamOnHGlobal(NULL, TRUE, result_ticket_stream.Receive());
ret = SUCCEEDED(printing::XPSModule::MergeAndValidatePrintTicket(
provider,
- print_ticket_stream.get(),
+ print_ticket_stream.Get(),
NULL,
kPTJobScope,
- result_ticket_stream.get(),
+ result_ticket_stream.Get(),
error.Receive()));
printing::XPSModule::CloseProvider(provider);
}
« no previous file with comments | « chrome/installer/util/wmi.cc ('k') | chrome/utility/importer/ie_importer_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698