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

Side by Side Diff: components/ntp_snippets/content_suggestions_metrics.h

Issue 2574073003: [NTPSnippets] Records the time since last successful bg fetch. (Closed)
Patch Set: Rebase & address last comment treib Created 4 years 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 #ifndef COMPONENTS_NTP_SNIPPETS_CONTENT_SUGGESTIONS_METRICS_H_ 5 #ifndef COMPONENTS_NTP_SNIPPETS_CONTENT_SUGGESTIONS_METRICS_H_
6 #define COMPONENTS_NTP_SNIPPETS_CONTENT_SUGGESTIONS_METRICS_H_ 6 #define COMPONENTS_NTP_SNIPPETS_CONTENT_SUGGESTIONS_METRICS_H_
7 7
8 #include <utility> 8 #include <utility>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/time/time.h" 11 #include "base/time/time.h"
12 #include "components/ntp_snippets/category.h" 12 #include "components/ntp_snippets/category.h"
13 #include "ui/base/window_open_disposition.h" 13 #include "ui/base/window_open_disposition.h"
14 14
15 namespace ntp_snippets { 15 namespace ntp_snippets {
16 namespace metrics { 16 namespace metrics {
17 17
18 void OnPageShown( 18 void OnPageShown(
19 const std::vector<std::pair<Category, int>>& suggestions_per_category); 19 const std::vector<std::pair<Category, int>>& suggestions_per_category);
20 20
21 // Should only be called once per NTP for each suggestion. 21 // Should only be called once per NTP for each suggestion.
22 void OnSuggestionShown(int global_position, 22 void OnSuggestionShown(int global_position,
23 Category category, 23 Category category,
24 int category_position, 24 int category_position,
25 base::Time publish_date, 25 base::Time publish_date,
26 base::Time last_background_fetch_time,
26 float score); 27 float score);
27 28
28 void OnSuggestionOpened(int global_position, 29 void OnSuggestionOpened(int global_position,
29 Category category, 30 Category category,
30 int category_position, 31 int category_position,
31 base::Time publish_date, 32 base::Time publish_date,
32 float score, 33 float score,
33 WindowOpenDisposition disposition); 34 WindowOpenDisposition disposition);
34 35
35 void OnSuggestionMenuOpened(int global_position, 36 void OnSuggestionMenuOpened(int global_position,
(...skipping 13 matching lines...) Expand all
49 void OnMoreButtonShown(Category category, int position); 50 void OnMoreButtonShown(Category category, int position);
50 51
51 void OnMoreButtonClicked(Category category, int position); 52 void OnMoreButtonClicked(Category category, int position);
52 53
53 void OnCategoryDismissed(Category category); 54 void OnCategoryDismissed(Category category);
54 55
55 } // namespace metrics 56 } // namespace metrics
56 } // namespace ntp_snippets 57 } // namespace ntp_snippets
57 58
58 #endif // COMPONENTS_NTP_SNIPPETS_CONTENT_SUGGESTIONS_SERVICE_H_ 59 #endif // COMPONENTS_NTP_SNIPPETS_CONTENT_SUGGESTIONS_SERVICE_H_
OLDNEW
« no previous file with comments | « chrome/browser/android/ntp/ntp_snippets_bridge.cc ('k') | components/ntp_snippets/content_suggestions_metrics.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698