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

Side by Side Diff: chrome/browser/ui/webui/ntp/new_tab_ui.cc

Issue 7397021: Re-land r93365 - add RefCountedString (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased onto r93582 Created 9 years, 5 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "build/build_config.h" 5 #include "build/build_config.h"
6 6
7 #include "chrome/browser/ui/webui/ntp/new_tab_ui.h" 7 #include "chrome/browser/ui/webui/ntp/new_tab_ui.h"
8 8
9 #include <set> 9 #include <set>
10 10
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after
444 444
445 if (AppLauncherHandler::HandlePing(profile_, path)) { 445 if (AppLauncherHandler::HandlePing(profile_, path)) {
446 return; 446 return;
447 } else if (!path.empty() && path[0] != '#') { 447 } else if (!path.empty() && path[0] != '#') {
448 // A path under new-tab was requested; it's likely a bad relative 448 // A path under new-tab was requested; it's likely a bad relative
449 // URL from the new tab page, but in any case it's an error. 449 // URL from the new tab page, but in any case it's an error.
450 NOTREACHED() << path << " should not have been requested on the NTP"; 450 NOTREACHED() << path << " should not have been requested on the NTP";
451 return; 451 return;
452 } 452 }
453 453
454 scoped_refptr<RefCountedBytes> html_bytes( 454 scoped_refptr<RefCountedMemory> html_bytes(
455 NTPResourceCacheFactory::GetForProfile(profile_)-> 455 NTPResourceCacheFactory::GetForProfile(profile_)->
456 GetNewTabHTML(is_incognito)); 456 GetNewTabHTML(is_incognito));
457 457
458 SendResponse(request_id, html_bytes); 458 SendResponse(request_id, html_bytes);
459 } 459 }
460 460
461 std::string NewTabUI::NewTabHTMLSource::GetMimeType(const std::string&) const { 461 std::string NewTabUI::NewTabHTMLSource::GetMimeType(const std::string&) const {
462 return "text/html"; 462 return "text/html";
463 } 463 }
464 464
465 bool NewTabUI::NewTabHTMLSource::ShouldReplaceExistingSource() const { 465 bool NewTabUI::NewTabHTMLSource::ShouldReplaceExistingSource() const {
466 return false; 466 return false;
467 } 467 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698