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