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

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

Issue 1840033002: Move popular_sites.* files to c/b/a/ntp (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: synced Created 4 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
« no previous file with comments | « chrome/browser/prefs/browser_prefs.cc ('k') | chrome/chrome_browser.gypi » ('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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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/popular_sites_internals_message_handler.h" 5 #include "chrome/browser/ui/webui/popular_sites_internals_message_handler.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
11 #include "base/files/file_util.h" 11 #include "base/files/file_util.h"
12 #include "base/memory/ref_counted.h" 12 #include "base/memory/ref_counted.h"
13 #include "base/task_runner_util.h" 13 #include "base/task_runner_util.h"
14 #include "base/values.h" 14 #include "base/values.h"
15 #include "chrome/browser/android/popular_sites.h" 15 #include "chrome/browser/android/ntp/popular_sites.h"
16 #include "chrome/browser/profiles/profile.h" 16 #include "chrome/browser/profiles/profile.h"
17 #include "components/url_formatter/url_fixer.h" 17 #include "components/url_formatter/url_fixer.h"
18 #include "content/public/browser/browser_thread.h" 18 #include "content/public/browser/browser_thread.h"
19 #include "content/public/browser/web_ui.h" 19 #include "content/public/browser/web_ui.h"
20 20
21 namespace { 21 namespace {
22 22
23 std::string ReadFileToString(const base::FilePath& path) { 23 std::string ReadFileToString(const base::FilePath& path) {
24 std::string result; 24 std::string result;
25 if (!base::ReadFileToString(path, &result)) 25 if (!base::ReadFileToString(path, &result))
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 web_ui()->CallJavascriptFunction("chrome.popular_sites_internals.receiveJson", 123 web_ui()->CallJavascriptFunction("chrome.popular_sites_internals.receiveJson",
124 base::StringValue(json)); 124 base::StringValue(json));
125 } 125 }
126 126
127 void PopularSitesInternalsMessageHandler::OnPopularSitesAvailable( 127 void PopularSitesInternalsMessageHandler::OnPopularSitesAvailable(
128 bool explicit_request, bool success) { 128 bool explicit_request, bool success) {
129 if (explicit_request) 129 if (explicit_request)
130 SendDownloadResult(success); 130 SendDownloadResult(success);
131 SendSites(); 131 SendSites();
132 } 132 }
OLDNEW
« no previous file with comments | « chrome/browser/prefs/browser_prefs.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698