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

Side by Side Diff: appengine/swarming/ui/res/imp/botpage/bot-page.html

Issue 2991303002: Add in OAuth authentication to Isolate Polymer UI (Closed)
Patch Set: Fix GET request for server_details Created 3 years, 4 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 <!-- 1 <!--
2 Copyright 2016 The LUCI Authors. All rights reserved. 2 Copyright 2016 The LUCI Authors. All rights reserved.
3 Use of this source code is governed under the Apache License, Version 2.0 3 Use of this source code is governed under the Apache License, Version 2.0
4 that can be found in the LICENSE file. 4 that can be found in the LICENSE file.
5 5
6 This in an HTML Import-able file that contains the definition 6 This in an HTML Import-able file that contains the definition
7 of the following elements: 7 of the following elements:
8 8
9 <bot-page> 9 <bot-page>
10 10
(...skipping 20 matching lines...) Expand all
31 <link rel="import" href="/res/imp/bower_components/paper-checkbox/paper-checkbox .html"> 31 <link rel="import" href="/res/imp/bower_components/paper-checkbox/paper-checkbox .html">
32 <link rel="import" href="/res/imp/bower_components/paper-dialog/paper-dialog.htm l"> 32 <link rel="import" href="/res/imp/bower_components/paper-dialog/paper-dialog.htm l">
33 <link rel="import" href="/res/imp/bower_components/paper-input/paper-input.html" > 33 <link rel="import" href="/res/imp/bower_components/paper-input/paper-input.html" >
34 <link rel="import" href="/res/imp/bower_components/paper-tabs/paper-tabs.html"> 34 <link rel="import" href="/res/imp/bower_components/paper-tabs/paper-tabs.html">
35 <link rel="import" href="/res/imp/bower_components/polymer/polymer.html"> 35 <link rel="import" href="/res/imp/bower_components/polymer/polymer.html">
36 36
37 <link rel="import" href="/res/imp/common/pageable-data.html"> 37 <link rel="import" href="/res/imp/common/pageable-data.html">
38 <link rel="import" href="/res/imp/common/single-page-style.html"> 38 <link rel="import" href="/res/imp/common/single-page-style.html">
39 <link rel="import" href="/res/imp/common/swarming-app.html"> 39 <link rel="import" href="/res/imp/common/swarming-app.html">
40 <link rel="import" href="/res/imp/common/task-behavior.html"> 40 <link rel="import" href="/res/imp/common/task-behavior.html">
41 <link rel="import" href="/res/imp/common/url-param.html"> 41 <link rel="import" href="/res/imp/shared/url-param.html">
42 42
43 <link rel="import" href="bot-page-data.html"> 43 <link rel="import" href="bot-page-data.html">
44 <link rel="import" href="bot-page-shared-behavior.html"> 44 <link rel="import" href="bot-page-shared-behavior.html">
45 <link rel="import" href="bot-page-summary.html"> 45 <link rel="import" href="bot-page-summary.html">
46 <link rel="import" href="device-summary.html"> 46 <link rel="import" href="device-summary.html">
47 47
48 48
49 <dom-module id="bot-page"> 49 <dom-module id="bot-page">
50 <template> 50 <template>
51 <style include="iron-flex iron-flex-alignment iron-positioning swarming-app- style single-page-style task-style"> 51 <style include="iron-flex iron-flex-alignment iron-positioning swarming-app- style single-page-style task-style">
(...skipping 560 matching lines...) Expand 10 before | Expand all | Expand 10 after
612 }, 612 },
613 613
614 _toggleState: function() { 614 _toggleState: function() {
615 this.set("_show_state", !this._show_state); 615 this.set("_show_state", !this._show_state);
616 } 616 }
617 617
618 }); 618 });
619 })(); 619 })();
620 </script> 620 </script>
621 </dom-module> 621 </dom-module>
OLDNEW
« no previous file with comments | « appengine/swarming/ui/res/imp/botlist/bot-list.html ('k') | appengine/swarming/ui/res/imp/botpage/bot-page-summary.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698