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

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

Issue 2279863002: Support server categories in NTPSnippetsService. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: rebase 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 633 matching lines...) Expand 10 before | Expand all | Expand 10 after
644 // Don't record FetchTimes if the result indicates that a precondition 644 // Don't record FetchTimes if the result indicates that a precondition
645 // failed and we never actually sent a network request 645 // failed and we never actually sent a network request
646 if (!IsFetchPreconditionFailed(result)) { 646 if (!IsFetchPreconditionFailed(result)) {
647 UMA_HISTOGRAM_TIMES("NewTabPage.Snippets.FetchTime", 647 UMA_HISTOGRAM_TIMES("NewTabPage.Snippets.FetchTime",
648 tick_clock_->NowTicks() - fetch_start_time_); 648 tick_clock_->NowTicks() - fetch_start_time_);
649 } 649 }
650 UMA_HISTOGRAM_ENUMERATION("NewTabPage.Snippets.FetchResult", 650 UMA_HISTOGRAM_ENUMERATION("NewTabPage.Snippets.FetchResult",
651 static_cast<int>(result), 651 static_cast<int>(result),
652 static_cast<int>(FetchResult::RESULT_MAX)); 652 static_cast<int>(FetchResult::RESULT_MAX));
653 653
654 DVLOG(1) << "Fetch finished: " << last_status_;
654 if (!snippets_available_callback_.is_null()) 655 if (!snippets_available_callback_.is_null())
655 snippets_available_callback_.Run(std::move(snippets)); 656 snippets_available_callback_.Run(std::move(snippets));
656 } 657 }
657 658
658 } // namespace ntp_snippets 659 } // namespace ntp_snippets
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698