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

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

Issue 14370003: Use device Robot Account to access Cloud Print. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
Index: chrome/browser/resources/print_preview/data/app_state.js
diff --git a/chrome/browser/resources/print_preview/data/app_state.js b/chrome/browser/resources/print_preview/data/app_state.js
index 9ccfa72252babed412ecded3411d0c0fb721f35a..1f26b67974e5fb4540ec98788d07edd66330ea66 100644
--- a/chrome/browser/resources/print_preview/data/app_state.js
+++ b/chrome/browser/resources/print_preview/data/app_state.js
@@ -95,7 +95,7 @@ cr.define('print_preview', function() {
* @const
* @private
*/
- AppState.VERSION_ = 2;
+ AppState.VERSION_ = 3;
/**
* Enumeration of field names for serialized app state.
@@ -199,6 +199,7 @@ cr.define('print_preview', function() {
if (state[AppState.Field_.VERSION] == AppState.VERSION_) {
this.selectedDestinationId_ =
state[AppState.Field_.SELECTED_DESTINATION_ID] || null;
+ state[AppState.Field_.SELECTED_DESTINATION_ORIGIN] || null;
if (state.hasOwnProperty(
AppState.Field_.IS_SELECTED_DESTINATION_LOCAL)) {
this.selectedDestinationOrigin_ =

Powered by Google App Engine
This is Rietveld 408576698