| OLD | NEW |
| 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 | 6 |
| 7 <link rel="import" href="../bower_components/app-router/app-router.html"> | 7 <link rel="import" href="../bower_components/app-router/app-router.html"> |
| 8 <link rel="import" href="../bower_components/polymer/polymer.html"> | 8 <link rel="import" href="../bower_components/polymer/polymer.html"> |
| 9 <link rel="import" | 9 <link rel="import" |
| 10 href="../bower_components/html5-history-anchor/html5-history-anchor.html"> | 10 href="../bower_components/html5-history-anchor/html5-history-anchor.html"> |
| 11 <link rel="stylesheet" | 11 <link rel="stylesheet" |
| 12 href="https://fonts.googleapis.com/css?family=Roboto:400,300,300italic,400it
alic,500,500italic,700,700italic"> | 12 href="https://fonts.googleapis.com/css?family=Roboto:400,300,300italic,400it
alic,500,500italic,700,700italic"> |
| 13 <link rel="import" | 13 <link rel="import" |
| 14 href="../bower_components/google-signin/google-signin-aware.html"> | 14 href="../bower_components/google-signin/google-signin-aware.html"> |
| 15 <link rel="import" href="../bower_components/paper-spinner/paper-spinner.html"> | 15 <link rel="import" href="../bower_components/paper-spinner/paper-spinner.html"> |
| 16 | 16 |
| 17 <link rel="import" href="/static/common/rpc/rpc-client.html"> | 17 <link rel="import" href="../rpc/rpc-client.html"> |
| 18 | 18 |
| 19 <link rel="import" href="rpc-descriptor-util.html"> | 19 <link rel="import" href="rpc-descriptor-util.html"> |
| 20 <link rel="import" href="rpc-method.html"> | 20 <link rel="import" href="rpc-method.html"> |
| 21 <link rel="import" href="rpc-service-list.html"> | 21 <link rel="import" href="rpc-service-list.html"> |
| 22 <link rel="import" href="rpc-service.html"> | 22 <link rel="import" href="rpc-service.html"> |
| 23 <link rel="import" href="../auth/auth-signin.html"> | 23 <link rel="import" href="../auth/auth-signin.html"> |
| 24 | 24 |
| 25 <!-- The `rpc-explorer` is the top-level element of RPC Explorer --> | 25 <!-- The `rpc-explorer` is the top-level element of RPC Explorer --> |
| 26 <dom-module id="rpc-explorer"> | 26 <dom-module id="rpc-explorer"> |
| 27 <template> | 27 <template> |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 } | 174 } |
| 175 }, | 175 }, |
| 176 | 176 |
| 177 _onRouted: function(e) { | 177 _onRouted: function(e) { |
| 178 var model = e.detail.model || {}; | 178 var model = e.detail.model || {}; |
| 179 this.service = model.service || ''; | 179 this.service = model.service || ''; |
| 180 this.method = model.method || ''; | 180 this.method = model.method || ''; |
| 181 } | 181 } |
| 182 }); | 182 }); |
| 183 </script> | 183 </script> |
| 184 </dom-module> | 184 </dom-module> |
| OLD | NEW |