| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/ui/webui/chrome_web_ui_data_source.h" | 5 #include "chrome/browser/ui/webui/chrome_web_ui_data_source.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/memory/ref_counted_memory.h" | 9 #include "base/memory/ref_counted_memory.h" |
| 10 #include "base/string_util.h" | 10 #include "base/string_util.h" |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 std::string template_data; | 76 std::string template_data; |
| 77 SetFontAndTextDirection(&localized_strings_); | 77 SetFontAndTextDirection(&localized_strings_); |
| 78 if (json_js_format_v2_) | 78 if (json_js_format_v2_) |
| 79 jstemplate_builder::AppendJsonJS2(&localized_strings_, &template_data); | 79 jstemplate_builder::AppendJsonJS2(&localized_strings_, &template_data); |
| 80 else | 80 else |
| 81 jstemplate_builder::AppendJsonJS(&localized_strings_, &template_data); | 81 jstemplate_builder::AppendJsonJS(&localized_strings_, &template_data); |
| 82 SendResponse(request_id, base::RefCountedString::TakeString(&template_data)); | 82 SendResponse(request_id, base::RefCountedString::TakeString(&template_data)); |
| 83 } | 83 } |
| 84 | 84 |
| 85 void ChromeWebUIDataSource::SendFromResourceBundle(int request_id, int idr) { | 85 void ChromeWebUIDataSource::SendFromResourceBundle(int request_id, int idr) { |
| 86 scoped_refptr<RefCountedStaticMemory> response( | 86 scoped_refptr<base::RefCountedStaticMemory> response( |
| 87 ResourceBundle::GetSharedInstance().LoadDataResourceBytes(idr)); | 87 ResourceBundle::GetSharedInstance().LoadDataResourceBytes(idr)); |
| 88 SendResponse(request_id, response); | 88 SendResponse(request_id, response); |
| 89 } | 89 } |
| OLD | NEW |