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

Side by Side Diff: chrome/browser/resources/print_preview/data/invitation.js

Issue 2939273002: DO NOT SUBMIT: what chrome/browser/resources/ could eventually look like with clang-format (Closed)
Patch Set: Created 3 years, 6 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 cr.define('print_preview', function() { 5 cr.define('print_preview', function() {
6 'use strict'; 6 'use strict';
7 7
8 /** 8 /**
9 * Printer sharing invitation data object. 9 * Printer sharing invitation data object.
10 * @param {string} sender Text identifying invitation sender. 10 * @param {string} sender Text identifying invitation sender.
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 return this.aclEntry_['scope'] || ''; 80 return this.aclEntry_['scope'] || '';
81 }, 81 },
82 82
83 /** @return {string} Account this invitation is sent for. */ 83 /** @return {string} Account this invitation is sent for. */
84 get account() { 84 get account() {
85 return this.account_; 85 return this.account_;
86 } 86 }
87 }; 87 };
88 88
89 // Export 89 // Export
90 return { 90 return {Invitation: Invitation};
91 Invitation: Invitation
92 };
93 }); 91 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698