2016-03-04 13:35:25 -05:00
|
|
|
<!--
|
2018-03-26 10:04:27 -04:00
|
|
|
@license
|
2016-03-04 13:35:25 -05:00
|
|
|
Copyright (C) 2016 The Android Open Source Project
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
|
|
|
|
2016-03-04 17:48:22 -05:00
|
|
|
<link rel="import" href="../../../bower_components/polymer/polymer.html">
|
2017-06-29 09:51:55 -07:00
|
|
|
<link rel="import" href="../../../behaviors/base-url-behavior/base-url-behavior.html">
|
2017-11-10 17:26:51 -08:00
|
|
|
<link rel="import" href="../../../behaviors/gr-patch-set-behavior/gr-patch-set-behavior.html">
|
2017-07-18 09:13:25 -07:00
|
|
|
<link rel="import" href="../../../behaviors/gr-path-list-behavior/gr-path-list-behavior.html">
|
|
|
|
<link rel="import" href="../../../behaviors/rest-client-behavior/rest-client-behavior.html">
|
|
|
|
<link rel="import" href="gr-etag-decorator.html">
|
|
|
|
|
2017-06-09 12:10:16 -07:00
|
|
|
<!-- NB: es6-promise Needed for IE11 and fetch polyfill support, see Issue 4308 -->
|
2016-09-13 21:55:15 +00:00
|
|
|
<script src="../../../bower_components/es6-promise/dist/es6-promise.min.js"></script>
|
2016-03-04 17:48:22 -05:00
|
|
|
<script src="../../../bower_components/fetch/fetch.js"></script>
|
2016-03-04 13:35:25 -05:00
|
|
|
|
|
|
|
<dom-module id="gr-rest-api-interface">
|
2017-06-09 12:10:16 -07:00
|
|
|
<!-- NB: Order is important, because of namespaced classes. -->
|
2017-07-12 12:53:45 -07:00
|
|
|
<script src="gr-auth.js"></script>
|
2017-01-18 22:22:15 -08:00
|
|
|
<script src="gr-reviewer-updates-parser.js"></script>
|
2017-06-09 12:10:16 -07:00
|
|
|
<script src="gr-rest-api-interface.js"></script>
|
2016-03-04 13:35:25 -05:00
|
|
|
</dom-module>
|