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

Unified Diff: chrome/browser/printing/print_dialog_cloud.cc

Issue 9887005: Fix some grammar in chrome/browser/printing (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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/browser/printing/cloud_print/cloud_print_setup_handler.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/printing/print_dialog_cloud.cc
diff --git a/chrome/browser/printing/print_dialog_cloud.cc b/chrome/browser/printing/print_dialog_cloud.cc
index a1e031ca6d8ca668dfc44a7a5a40868d29457896..42a711da35dcb1f3ca1818c72aa7a5b0972402d8 100644
--- a/chrome/browser/printing/print_dialog_cloud.cc
+++ b/chrome/browser/printing/print_dialog_cloud.cc
@@ -288,7 +288,7 @@ CloudPrintFlowHandler::~CloudPrintFlowHandler() {
void CloudPrintFlowHandler::SetDialogDelegate(
CloudPrintHtmlDialogDelegate* delegate) {
// Even if setting a new WebUI, it means any previous task needs
- // to be cancelled, it's now invalid.
+ // to be canceled, its now invalid.
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
CancelAnyRunningTask();
dialog_delegate_ = delegate;
@@ -296,7 +296,7 @@ void CloudPrintFlowHandler::SetDialogDelegate(
// Cancels any print data sender we have in flight and removes our
// reference to it, so when the task that is calling it finishes and
-// removes it's reference, it goes away.
+// removes its reference, it goes away.
void CloudPrintFlowHandler::CancelAnyRunningTask() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
if (print_data_sender_.get()) {
@@ -542,7 +542,7 @@ void CloudPrintHtmlDialogDelegate::Init(int width, int height,
CloudPrintHtmlDialogDelegate::~CloudPrintHtmlDialogDelegate() {
// If the flow_handler_ is about to outlive us because we don't own
- // it anymore, we need to have it remove it's reference to us.
+ // it anymore, we need to have it remove its reference to us.
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
flow_handler_->SetDialogDelegate(NULL);
if (owns_flow_handler_) {
« no previous file with comments | « chrome/browser/printing/cloud_print/cloud_print_setup_handler.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698