| // Copyright 2013 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "chrome/browser/search/most_visited_iframe_source.h" |
| |
| #include "base/command_line.h" |
| #include "base/metrics/histogram.h" |
| #include "base/strings/string_number_conversions.h" |
| #include "base/strings/stringprintf.h" |
| #include "chrome/browser/search/local_files_ntp_source.h" |
| #include "chrome/common/chrome_switches.h" |
| #include "chrome/common/url_constants.h" |
| #include "content/public/browser/user_metrics.h" |
| #include "grit/browser_resources.h" |
| #include "net/base/url_util.h" |
| #include "url/gurl.h" |
| |
| namespace { |
| |
| const char kTitleHTMLPath[] = "/title.html"; |
| const char kTitleCSSPath[] = "/title.css"; |
| const char kTitleJSPath[] = "/title.js"; |
| const char kThumbnailHTMLPath[] = "/thumbnail.html"; |
| const char kThumbnailCSSPath[] = "/thumbnail.css"; |
| const char kThumbnailJSPath[] = "/thumbnail.js"; |
| const char kSingleHTMLPath[] = "/single.html"; |
| const char kSingleCSSPath[] = "/single.css"; |
| const char kSingleJSPath[] = "/single.js"; |
| const char kUtilJSPath[] = "/util.js"; |
| const char kCommonCSSPath[] = "/common.css"; |
| |
| } // namespace |
| |
| MostVisitedIframeSource::MostVisitedIframeSource() { |
| } |
| |
| MostVisitedIframeSource::~MostVisitedIframeSource() { |
| } |
| |
| std::string MostVisitedIframeSource::GetSource() const { |
| return chrome::kChromeSearchMostVisitedHost; |
| } |
| |
| void MostVisitedIframeSource::StartDataRequest( |
| const std::string& path_and_query, |
| int render_process_id, |
| int render_frame_id, |
| const content::URLDataSource::GotDataCallback& callback) { |
| GURL url(chrome::kChromeSearchMostVisitedUrl + path_and_query); |
| std::string path(url.path()); |
| |
| #if !defined(GOOGLE_CHROME_BUILD) |
| base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); |
| if (command_line->HasSwitch(switches::kLocalNtpReload)) { |
| std::string rel_path = "most_visited_" + path.substr(1); |
| if (path == kSingleJSPath) { |
| std::string origin; |
| if (!GetOrigin(render_process_id, render_frame_id, &origin)) { |
| callback.Run(NULL); |
| return; |
| } |
| local_ntp::SendLocalFileResourceWithOrigin(rel_path, origin, callback); |
| } else { |
| local_ntp::SendLocalFileResource(rel_path, callback); |
| } |
| return; |
| } |
| #endif |
| |
| if (path == kTitleHTMLPath) { |
| SendResource(IDR_MOST_VISITED_TITLE_HTML, callback); |
| } else if (path == kTitleCSSPath) { |
| SendResource(IDR_MOST_VISITED_TITLE_CSS, callback); |
| } else if (path == kTitleJSPath) { |
| SendResource(IDR_MOST_VISITED_TITLE_JS, callback); |
| } else if (path == kThumbnailHTMLPath) { |
| SendResource(IDR_MOST_VISITED_THUMBNAIL_HTML, callback); |
| } else if (path == kThumbnailCSSPath) { |
| SendResource(IDR_MOST_VISITED_THUMBNAIL_CSS, callback); |
| } else if (path == kThumbnailJSPath) { |
| SendJSWithOrigin(IDR_MOST_VISITED_THUMBNAIL_JS, render_process_id, |
| render_frame_id, callback); |
| } else if (path == kSingleHTMLPath) { |
| SendResource(IDR_MOST_VISITED_SINGLE_HTML, callback); |
| } else if (path == kSingleCSSPath) { |
| SendResource(IDR_MOST_VISITED_SINGLE_CSS, callback); |
| } else if (path == kSingleJSPath) { |
| SendJSWithOrigin(IDR_MOST_VISITED_SINGLE_JS, render_process_id, |
| render_frame_id, callback); |
| } else if (path == kUtilJSPath) { |
| SendJSWithOrigin(IDR_MOST_VISITED_UTIL_JS, render_process_id, |
| render_frame_id, callback); |
| } else if (path == kCommonCSSPath) { |
| SendResource(IDR_MOST_VISITED_IFRAME_CSS, callback); |
| } else { |
| callback.Run(NULL); |
| } |
| } |
| |
| bool MostVisitedIframeSource::ServesPath(const std::string& path) const { |
| return path == kTitleHTMLPath || path == kTitleCSSPath || |
| path == kTitleJSPath || path == kThumbnailHTMLPath || |
| path == kThumbnailCSSPath || path == kThumbnailJSPath || |
| path == kSingleHTMLPath || path == kSingleCSSPath || |
| path == kSingleJSPath || path == kUtilJSPath || path == kCommonCSSPath; |
| } |