Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(99)

Side by Side Diff: chrome/browser/ui/webui/chrome_web_ui_data_source.cc

Issue 10165020: Move RefCountedStaticMemory to base namespace (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/about_ui.cc ('k') | chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698