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

Unified Diff: chrome/browser/ui/app_list/start_page_service.cc

Issue 961553002: Enable right clicking on the applist doodle web contents and log the data. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/app_list/start_page_service.cc
diff --git a/chrome/browser/ui/app_list/start_page_service.cc b/chrome/browser/ui/app_list/start_page_service.cc
index 4df7bbbd343d0e53d48a4f01c8f3e60feca31bb9..3f958cc64d43fc08894c642987b7f8688860ac83 100644
--- a/chrome/browser/ui/app_list/start_page_service.cc
+++ b/chrome/browser/ui/app_list/start_page_service.cc
@@ -630,6 +630,7 @@ void StartPageService::FetchDoodleJson() {
void StartPageService::OnURLFetchComplete(const net::URLFetcher* source) {
std::string json_data;
source->GetResponseAsString(&json_data);
+ VLOG(1) << "App list doodle data = " << json_data;
Matt Giuca 2015/02/26 03:07:08 // TODO(calamity): Remove this log after http://cr
calamity 2015/02/26 03:27:25 Changed to a warning log of crashed renderer inste
// Remove XSSI guard for JSON parsing.
size_t json_start_index = json_data.find("{");

Powered by Google App Engine
This is Rietveld 408576698