OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROME_BROWSER_MOD_PAGESPEED_METRICS_H_ | |
sky
2015/03/31 23:51:55
In hopes of not dumping more in chrome/browser, ho
davidben
2015/04/08 21:07:46
Done.
| |
6 #define CHROME_BROWSER_MOD_PAGESPEED_METRICS_H_ | |
7 | |
8 #include "content/public/common/resource_type.h" | |
9 | |
10 class GURL; | |
11 | |
12 namespace net { | |
13 class HttpResponseHeaders; | |
14 } | |
15 | |
16 // Records metrics about mod_pagespeed headers. | |
sky
2015/03/31 23:51:55
Can you point to where one would look for what mod
davidben
2015/04/08 21:07:46
Done.
| |
17 void RecordModPagespeedMetrics( | |
18 const content::ResourceType resource_type, | |
19 const GURL& request_url, | |
20 const net::HttpResponseHeaders* response_headers); | |
21 | |
22 #endif // CHROME_BROWSER_MOD_PAGESPEED_METRICS_H_ | |
OLD | NEW |