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

Unified Diff: chrome/browser/resources/print_preview/data/invitation_store.js

Issue 2863183004: Print Preview: Fix top level directory compile errors (Closed)
Patch Set: Address comments Created 3 years, 7 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: chrome/browser/resources/print_preview/data/invitation_store.js
diff --git a/chrome/browser/resources/print_preview/data/invitation_store.js b/chrome/browser/resources/print_preview/data/invitation_store.js
index bfc1265ed0eacae266bddc34368fd4781eb20bd4..9524ca2601cd45c81b845e24b60892e72de643d9 100644
--- a/chrome/browser/resources/print_preview/data/invitation_store.js
+++ b/chrome/browser/resources/print_preview/data/invitation_store.js
@@ -105,19 +105,19 @@ cr.define('print_preview', function() {
this.cloudPrintInterface_ = cloudPrintInterface;
this.tracker_.add(
this.cloudPrintInterface_,
- cloudprint.CloudPrintInterface.EventType.INVITES_DONE,
+ cloudprint.CloudPrintInterfaceEventType.INVITES_DONE,
this.onCloudPrintInvitesDone_.bind(this));
this.tracker_.add(
this.cloudPrintInterface_,
- cloudprint.CloudPrintInterface.EventType.INVITES_FAILED,
+ cloudprint.CloudPrintInterfaceEventType.INVITES_FAILED,
this.onCloudPrintInvitesDone_.bind(this));
this.tracker_.add(
this.cloudPrintInterface_,
- cloudprint.CloudPrintInterface.EventType.PROCESS_INVITE_DONE,
+ cloudprint.CloudPrintInterfaceEventType.PROCESS_INVITE_DONE,
this.onCloudPrintProcessInviteDone_.bind(this));
this.tracker_.add(
this.cloudPrintInterface_,
- cloudprint.CloudPrintInterface.EventType.PROCESS_INVITE_FAILED,
+ cloudprint.CloudPrintInterfaceEventType.PROCESS_INVITE_FAILED,
this.onCloudPrintProcessInviteFailed_.bind(this));
},
« no previous file with comments | « chrome/browser/resources/print_preview/data/destination_store.js ('k') | chrome/browser/resources/print_preview/metrics.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698