OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |