| OLD | NEW |
| 1 library googleapis.pagespeedonline.v1; | 1 library googleapis.pagespeedonline.v1; |
| 2 | 2 |
| 3 import "dart:core" as core; | 3 import "dart:core" as core; |
| 4 import "dart:collection" as collection; | 4 import "dart:collection" as collection; |
| 5 import "dart:async" as async; | 5 import "dart:async" as async; |
| 6 import "dart:convert" as convert; | 6 import "dart:convert" as convert; |
| 7 | 7 |
| 8 import "package:crypto/crypto.dart" as crypto; | 8 import "package:crypto/crypto.dart" as crypto; |
| 9 import 'package:http/http.dart' as http; | 9 import 'package:http/http.dart' as http; |
| 10 import '../src/common_internal.dart' as common_internal; | 10 import '../src/common_internal.dart' as common_internal; |
| 11 import '../common/common.dart' as common; | 11 import '../common/common.dart' as common; |
| 12 | 12 |
| 13 export '../common/common.dart' show ApiRequestError; | 13 export '../common/common.dart' show ApiRequestError; |
| 14 export '../common/common.dart' show DetailedApiRequestError; | 14 export '../common/common.dart' show DetailedApiRequestError; |
| 15 | 15 |
| 16 /** | 16 /** |
| 17 * Lets you analyze the performance of a web page and get tailored suggestions | 17 * Lets you analyze the performance of a web page and get tailored suggestions |
| 18 * to make that page faster. | 18 * to make that page faster. |
| 19 */ | 19 */ |
| 20 class PagespeedonlineApi { | 20 class PagespeedonlineApi { |
| 21 | 21 |
| 22 final common_internal.ApiRequester _requester; | 22 final common_internal.ApiRequester _requester; |
| 23 | 23 |
| 24 PagespeedapiResourceApi get pagespeedapi => new PagespeedapiResourceApi(_reque
ster); | 24 PagespeedapiResourceApi get pagespeedapi => new PagespeedapiResourceApi(_reque
ster); |
| 25 | 25 |
| 26 PagespeedonlineApi(http.Client client) : | 26 PagespeedonlineApi(http.Client client, {core.String rootUrl: "https://www.goog
leapis.com/", core.String servicePath: "pagespeedonline/v1/"}) : |
| 27 _requester = new common_internal.ApiRequester(client, "https://www.googlea
pis.com/", "pagespeedonline/v1/"); | 27 _requester = new common_internal.ApiRequester(client, rootUrl, servicePath
); |
| 28 } | 28 } |
| 29 | 29 |
| 30 | 30 |
| 31 /** Not documented yet. */ | 31 /** Not documented yet. */ |
| 32 class PagespeedapiResourceApi { | 32 class PagespeedapiResourceApi { |
| 33 final common_internal.ApiRequester _requester; | 33 final common_internal.ApiRequester _requester; |
| 34 | 34 |
| 35 PagespeedapiResourceApi(common_internal.ApiRequester client) : | 35 PagespeedapiResourceApi(common_internal.ApiRequester client) : |
| 36 _requester = client; | 36 _requester = client; |
| 37 | 37 |
| (...skipping 824 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 862 _json["title"] = title; | 862 _json["title"] = title; |
| 863 } | 863 } |
| 864 if (version != null) { | 864 if (version != null) { |
| 865 _json["version"] = (version).toJson(); | 865 _json["version"] = (version).toJson(); |
| 866 } | 866 } |
| 867 return _json; | 867 return _json; |
| 868 } | 868 } |
| 869 } | 869 } |
| 870 | 870 |
| 871 | 871 |
| OLD | NEW |