| Index: tools/chrome_proxy/common/chrome_proxy_metrics.py | 
| diff --git a/tools/chrome_proxy/common/chrome_proxy_metrics.py b/tools/chrome_proxy/common/chrome_proxy_metrics.py | 
| index 47a6d6b0673141dd3b27fef2995deaecc56f6a3a..92596dae6874764cf2c38a129be82c521f73ec02 100644 | 
| --- a/tools/chrome_proxy/common/chrome_proxy_metrics.py | 
| +++ b/tools/chrome_proxy/common/chrome_proxy_metrics.py | 
| @@ -103,13 +103,13 @@ class ChromeProxyResponse(network_metrics.HTTPResponse): | 
| def HasChromeProxyLoFiResponse(self): | 
| return self.HasResponseHeader('Chrome-Proxy', "q=low") | 
|  | 
| -  def HasChromeProxyLoFiPreviewRequest(self): | 
| +  def HasChromeProxyLitePageRequest(self): | 
| return self.HasRequestHeader('Chrome-Proxy', "q=preview") | 
|  | 
| -  def HasChromeProxyLoFiPreviewExpRequest(self): | 
| +  def HasChromeProxyLitePageExpRequest(self): | 
| return self.HasRequestHeader('Chrome-Proxy', "exp=ignore_preview_blacklist") | 
|  | 
| -  def HasChromeProxyLoFiPreviewResponse(self): | 
| +  def HasChromeProxyLitePageResponse(self): | 
| return self.HasResponseHeader('Chrome-Proxy', "q=preview") | 
|  | 
| def HasChromeProxyPassThroughRequest(self): | 
|  |