| Index: chrome/renderer/extensions/app_bindings.cc
 | 
| diff --git a/chrome/renderer/extensions/app_bindings.cc b/chrome/renderer/extensions/app_bindings.cc
 | 
| index 472d93103b15681209e9c5b4ac59b3226ae65363..af65cc997d230ebfeeaec917bc918d8925686975 100644
 | 
| --- a/chrome/renderer/extensions/app_bindings.cc
 | 
| +++ b/chrome/renderer/extensions/app_bindings.cc
 | 
| @@ -39,7 +39,7 @@ bool IsCheckoutURL(const std::string& url_spec) {
 | 
|    if (checkout_url_prefix.empty())
 | 
|      checkout_url_prefix = "https://checkout.google.com/";
 | 
|  
 | 
| -  return StartsWithASCII(url_spec, checkout_url_prefix, false);
 | 
| +  return base::StartsWithASCII(url_spec, checkout_url_prefix, false);
 | 
|  }
 | 
|  
 | 
|  bool CheckAccessToAppDetails(WebFrame* frame, v8::Isolate* isolate) {
 | 
| 
 |