| 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 "apps/app_launcher.h" |
| 7 #include "base/memory/ref_counted_memory.h" | 8 #include "base/memory/ref_counted_memory.h" |
| 9 #include "base/metrics/histogram.h" |
| 8 #include "chrome/browser/profiles/profile.h" | 10 #include "chrome/browser/profiles/profile.h" |
| 9 #include "chrome/browser/ui/webui/ntp/app_launcher_handler.h" | 11 #include "chrome/browser/ui/webui/ntp/app_launcher_handler.h" |
| 10 #include "chrome/browser/ui/webui/ntp/app_resource_cache_factory.h" | 12 #include "chrome/browser/ui/webui/ntp/app_resource_cache_factory.h" |
| 11 #include "chrome/browser/ui/webui/ntp/ntp_login_handler.h" | 13 #include "chrome/browser/ui/webui/ntp/ntp_login_handler.h" |
| 12 #include "chrome/browser/ui/webui/ntp/ntp_resource_cache.h" | 14 #include "chrome/browser/ui/webui/ntp/ntp_resource_cache.h" |
| 13 #include "chrome/common/url_constants.h" | 15 #include "chrome/common/url_constants.h" |
| 14 #include "content/public/browser/browser_thread.h" | 16 #include "content/public/browser/browser_thread.h" |
| 15 #include "content/public/browser/render_process_host.h" | 17 #include "content/public/browser/render_process_host.h" |
| 16 #include "content/public/browser/web_ui.h" | 18 #include "content/public/browser/web_ui.h" |
| 17 #include "grit/generated_resources.h" | 19 #include "grit/generated_resources.h" |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 resource->set_should_show_most_visited_page(false); | 104 resource->set_should_show_most_visited_page(false); |
| 103 resource->set_should_show_other_devices_menu(false); | 105 resource->set_should_show_other_devices_menu(false); |
| 104 resource->set_should_show_recently_closed_menu(false); | 106 resource->set_should_show_recently_closed_menu(false); |
| 105 | 107 |
| 106 content::RenderProcessHost* render_host = | 108 content::RenderProcessHost* render_host = |
| 107 content::RenderProcessHost::FromID(render_process_id); | 109 content::RenderProcessHost::FromID(render_process_id); |
| 108 bool is_incognito = render_host->GetBrowserContext()->IsOffTheRecord(); | 110 bool is_incognito = render_host->GetBrowserContext()->IsOffTheRecord(); |
| 109 scoped_refptr<base::RefCountedMemory> html_bytes( | 111 scoped_refptr<base::RefCountedMemory> html_bytes( |
| 110 resource->GetNewTabHTML(is_incognito)); | 112 resource->GetNewTabHTML(is_incognito)); |
| 111 | 113 |
| 114 if (!is_incognito) { |
| 115 if (apps::IsAppLauncherEnabled()) { |
| 116 AppLauncherHandler::RecordAppLauncherPromoHistogram( |
| 117 apps::APP_LAUNCHER_PROMO_ALREADY_INSTALLED); |
| 118 } else if (apps::ShouldShowAppLauncherPromo()){ |
| 119 AppLauncherHandler::RecordAppLauncherPromoHistogram( |
| 120 apps::APP_LAUNCHER_PROMO_SHOWN); |
| 121 } |
| 122 } |
| 123 |
| 112 callback.Run(html_bytes.get()); | 124 callback.Run(html_bytes.get()); |
| 113 } | 125 } |
| 114 | 126 |
| 115 std::string AppLauncherPageUI::HTMLSource::GetMimeType( | 127 std::string AppLauncherPageUI::HTMLSource::GetMimeType( |
| 116 const std::string& resource) const { | 128 const std::string& resource) const { |
| 117 return "text/html"; | 129 return "text/html"; |
| 118 } | 130 } |
| 119 | 131 |
| 120 bool AppLauncherPageUI::HTMLSource::ShouldReplaceExistingSource() const { | 132 bool AppLauncherPageUI::HTMLSource::ShouldReplaceExistingSource() const { |
| 121 return false; | 133 return false; |
| 122 } | 134 } |
| 123 | 135 |
| 124 bool AppLauncherPageUI::HTMLSource::ShouldAddContentSecurityPolicy() const { | 136 bool AppLauncherPageUI::HTMLSource::ShouldAddContentSecurityPolicy() const { |
| 125 return false; | 137 return false; |
| 126 } | 138 } |
| 127 | 139 |
| 128 AppLauncherPageUI::HTMLSource::~HTMLSource() {} | 140 AppLauncherPageUI::HTMLSource::~HTMLSource() {} |
| OLD | NEW |