| Index: third_party/WebKit/Source/devtools/front_end/network_group_lookup/NetworkProductGroupLookup.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/network_group_lookup/NetworkProductGroupLookup.js b/third_party/WebKit/Source/devtools/front_end/network_group_lookup/NetworkProductGroupLookup.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e8594675bb6c29548a594c973561218d840e389c
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/devtools/front_end/network_group_lookup/NetworkProductGroupLookup.js
|
| @@ -0,0 +1,16 @@
|
| +// Copyright 2017 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +/**
|
| + * @implements {Network.NetworkGroupLookupInterface}
|
| + */
|
| +NetworkGroupLookup.NetworkProductGroupLookup = class {
|
| + /**
|
| + * @override
|
| + * @param {!SDK.NetworkRequest} request
|
| + * @return {?string}
|
| + */
|
| + lookup(request) {
|
| + return ProductRegistry.nameForUrl(request.parsedURL);
|
| + }
|
| +};
|
|
|