| 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 position_in_category, | 24 int position_in_category, |
| 25 base::Time publish_date, | 25 base::Time publish_date, |
| 26 base::Time last_background_fetch_time, | 26 float score, |
| 27 float score); | 27 base::Time fetch_date); |
| 28 | 28 |
| 29 // TODO(crbug.com/682160): Take struct, so that one could not mix up the | 29 // TODO(crbug.com/682160): Take struct, so that one could not mix up the |
| 30 // order of arguments. | 30 // order of arguments. |
| 31 void OnSuggestionOpened(int global_position, | 31 void OnSuggestionOpened(int global_position, |
| 32 Category category, | 32 Category category, |
| 33 int category_index, | 33 int category_index, |
| 34 int position_in_category, | 34 int position_in_category, |
| 35 base::Time publish_date, | 35 base::Time publish_date, |
| 36 float score, | 36 float score, |
| 37 WindowOpenDisposition disposition); | 37 WindowOpenDisposition disposition); |
| (...skipping 17 matching lines...) Expand all Loading... |
| 55 void OnMoreButtonShown(Category category, int position); | 55 void OnMoreButtonShown(Category category, int position); |
| 56 | 56 |
| 57 void OnMoreButtonClicked(Category category, int position); | 57 void OnMoreButtonClicked(Category category, int position); |
| 58 | 58 |
| 59 void OnCategoryDismissed(Category category); | 59 void OnCategoryDismissed(Category category); |
| 60 | 60 |
| 61 } // namespace metrics | 61 } // namespace metrics |
| 62 } // namespace ntp_snippets | 62 } // namespace ntp_snippets |
| 63 | 63 |
| 64 #endif // COMPONENTS_NTP_SNIPPETS_CONTENT_SUGGESTIONS_SERVICE_H_ | 64 #endif // COMPONENTS_NTP_SNIPPETS_CONTENT_SUGGESTIONS_SERVICE_H_ |
| OLD | NEW |