| Index: chrome/browser/ui/webui/app_launcher_page_ui.cc
|
| diff --git a/chrome/browser/ui/webui/app_launcher_page_ui.cc b/chrome/browser/ui/webui/app_launcher_page_ui.cc
|
| index c33f90e268220e65b354e4ff4d3b35752932d638..3dea26b5afbab368a395841865f767f6bf55c8d5 100644
|
| --- a/chrome/browser/ui/webui/app_launcher_page_ui.cc
|
| +++ b/chrome/browser/ui/webui/app_launcher_page_ui.cc
|
| @@ -126,6 +126,12 @@ bool AppLauncherPageUI::HTMLSource::ShouldReplaceExistingSource() const {
|
| return false;
|
| }
|
|
|
| +bool AppLauncherPageUI::HTMLSource::AllowCaching() const {
|
| + // Should not be cached to reflect dynamically-generated contents that may
|
| + // depend on user profiles.
|
| + return false;
|
| +}
|
| +
|
| std::string AppLauncherPageUI::HTMLSource::GetContentSecurityPolicyScriptSrc()
|
| const {
|
| // 'unsafe-inline' is added to script-src.
|
|
|