| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/net/chrome_url_request_context.h" | 5 #include "chrome/browser/net/chrome_url_request_context.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/message_loop.h" | 8 #include "base/message_loop.h" |
| 9 #include "base/message_loop_proxy.h" | 9 #include "base/message_loop_proxy.h" |
| 10 #include "base/string_util.h" | 10 #include "base/string_util.h" |
| (...skipping 777 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 788 return FilePath(); | 788 return FilePath(); |
| 789 } | 789 } |
| 790 | 790 |
| 791 std::string ChromeURLRequestContext::GetDefaultLocaleForExtension( | 791 std::string ChromeURLRequestContext::GetDefaultLocaleForExtension( |
| 792 const std::string& id) { | 792 const std::string& id) { |
| 793 ExtensionInfoMap::iterator iter = extension_info_.find(id); | 793 ExtensionInfoMap::iterator iter = extension_info_.find(id); |
| 794 std::string result; | 794 std::string result; |
| 795 if (iter != extension_info_.end()) | 795 if (iter != extension_info_.end()) |
| 796 result = iter->second->default_locale; | 796 result = iter->second->default_locale; |
| 797 | 797 |
error: old chunk mismatch |
None
| OLD | NEW |