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