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

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

Issue 13945023: Make URLDataSource::GetSource() const. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: And another one. Created 7 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
« no previous file with comments | « chrome/browser/ui/webui/app_launcher_page_ui.h ('k') | chrome/browser/ui/webui/bookmarks_ui.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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/app_launcher_page_ui.h" 5 #include "chrome/browser/ui/webui/app_launcher_page_ui.h"
6 6
7 #include "base/memory/ref_counted_memory.h" 7 #include "base/memory/ref_counted_memory.h"
8 #include "chrome/browser/profiles/profile.h" 8 #include "chrome/browser/profiles/profile.h"
9 #include "chrome/browser/ui/webui/ntp/app_launcher_handler.h" 9 #include "chrome/browser/ui/webui/ntp/app_launcher_handler.h"
10 #include "chrome/browser/ui/webui/ntp/app_resource_cache_factory.h" 10 #include "chrome/browser/ui/webui/ntp/app_resource_cache_factory.h"
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 return Profile::FromWebUI(web_ui()); 79 return Profile::FromWebUI(web_ui());
80 } 80 }
81 81
82 /////////////////////////////////////////////////////////////////////////////// 82 ///////////////////////////////////////////////////////////////////////////////
83 // HTMLSource 83 // HTMLSource
84 84
85 AppLauncherPageUI::HTMLSource::HTMLSource(Profile* profile) 85 AppLauncherPageUI::HTMLSource::HTMLSource(Profile* profile)
86 : profile_(profile) { 86 : profile_(profile) {
87 } 87 }
88 88
89 std::string AppLauncherPageUI::HTMLSource::GetSource() { 89 std::string AppLauncherPageUI::HTMLSource::GetSource() const {
90 return chrome::kChromeUIAppLauncherPageHost; 90 return chrome::kChromeUIAppLauncherPageHost;
91 } 91 }
92 92
93 void AppLauncherPageUI::HTMLSource::StartDataRequest( 93 void AppLauncherPageUI::HTMLSource::StartDataRequest(
94 const std::string& path, 94 const std::string& path,
95 bool is_incognito, 95 bool is_incognito,
96 const content::URLDataSource::GotDataCallback& callback) { 96 const content::URLDataSource::GotDataCallback& callback) {
97 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); 97 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
98 98
99 NTPResourceCache* resource = AppResourceCacheFactory::GetForProfile(profile_); 99 NTPResourceCache* resource = AppResourceCacheFactory::GetForProfile(profile_);
(...skipping 14 matching lines...) Expand all
114 114
115 bool AppLauncherPageUI::HTMLSource::ShouldReplaceExistingSource() const { 115 bool AppLauncherPageUI::HTMLSource::ShouldReplaceExistingSource() const {
116 return false; 116 return false;
117 } 117 }
118 118
119 bool AppLauncherPageUI::HTMLSource::ShouldAddContentSecurityPolicy() const { 119 bool AppLauncherPageUI::HTMLSource::ShouldAddContentSecurityPolicy() const {
120 return false; 120 return false;
121 } 121 }
122 122
123 AppLauncherPageUI::HTMLSource::~HTMLSource() {} 123 AppLauncherPageUI::HTMLSource::~HTMLSource() {}
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/app_launcher_page_ui.h ('k') | chrome/browser/ui/webui/bookmarks_ui.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698