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