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

Side by Side Diff: components/ntp_snippets/ntp_snippets_fetcher.cc

Issue 2255783002: Support server categories in NTPSnippetsService. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move TODO. Created 4 years, 3 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
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 "components/ntp_snippets/ntp_snippets_fetcher.h" 5 #include "components/ntp_snippets/ntp_snippets_fetcher.h"
6 6
7 #include <stdlib.h> 7 #include <stdlib.h>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
(...skipping 582 matching lines...) Expand 10 before | Expand all | Expand 10 after
593 // a network request, so don't record FetchTime in those cases. 593 // a network request, so don't record FetchTime in those cases.
594 if (result != FetchResult::EMPTY_HOSTS && 594 if (result != FetchResult::EMPTY_HOSTS &&
595 result != FetchResult::OAUTH_TOKEN_ERROR) { 595 result != FetchResult::OAUTH_TOKEN_ERROR) {
596 UMA_HISTOGRAM_TIMES("NewTabPage.Snippets.FetchTime", 596 UMA_HISTOGRAM_TIMES("NewTabPage.Snippets.FetchTime",
597 tick_clock_->NowTicks() - fetch_start_time_); 597 tick_clock_->NowTicks() - fetch_start_time_);
598 } 598 }
599 UMA_HISTOGRAM_ENUMERATION("NewTabPage.Snippets.FetchResult", 599 UMA_HISTOGRAM_ENUMERATION("NewTabPage.Snippets.FetchResult",
600 static_cast<int>(result), 600 static_cast<int>(result),
601 static_cast<int>(FetchResult::RESULT_MAX)); 601 static_cast<int>(FetchResult::RESULT_MAX));
602 602
603 DVLOG(1) << "Fetch finished: " << last_status_;
603 if (!snippets_available_callback_.is_null()) 604 if (!snippets_available_callback_.is_null())
604 snippets_available_callback_.Run(std::move(snippets)); 605 snippets_available_callback_.Run(std::move(snippets));
605 } 606 }
606 607
607 } // namespace ntp_snippets 608 } // namespace ntp_snippets
OLDNEW
« no previous file with comments | « no previous file | components/ntp_snippets/ntp_snippets_service.h » ('j') | components/ntp_snippets/ntp_snippets_service.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698