OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 CHROME_BROWSER_METRICS_PLUGIN_METRICS_PROVIDER_H_ | 5 #ifndef CHROME_BROWSER_METRICS_PLUGIN_METRICS_PROVIDER_H_ |
6 #define CHROME_BROWSER_METRICS_PLUGIN_METRICS_PROVIDER_H_ | 6 #define CHROME_BROWSER_METRICS_PLUGIN_METRICS_PROVIDER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 24 matching lines...) Expand all Loading... | |
35 | 35 |
36 // Fetches plugin information data asynchronously and calls |done_callback| | 36 // Fetches plugin information data asynchronously and calls |done_callback| |
37 // when done. | 37 // when done. |
38 void GetPluginInformation(const base::Closure& done_callback); | 38 void GetPluginInformation(const base::Closure& done_callback); |
39 | 39 |
40 // metrics::MetricsDataProvider: | 40 // metrics::MetricsDataProvider: |
41 virtual void ProvideSystemProfileMetrics( | 41 virtual void ProvideSystemProfileMetrics( |
42 metrics::SystemProfileProto* system_profile_proto) OVERRIDE; | 42 metrics::SystemProfileProto* system_profile_proto) OVERRIDE; |
43 virtual void ProvideStabilityMetrics( | 43 virtual void ProvideStabilityMetrics( |
44 metrics::SystemProfileProto* system_profile_proto) OVERRIDE; | 44 metrics::SystemProfileProto* system_profile_proto) OVERRIDE; |
45 virtual void RecordCurrentState() OVERRIDE; | 45 void RecordCurrentState(); |
46 | 46 |
47 // Notifies the provider about an error loading the plugin at |plugin_path|. | 47 // Notifies the provider about an error loading the plugin at |plugin_path|. |
48 void LogPluginLoadingError(const base::FilePath& plugin_path); | 48 void LogPluginLoadingError(const base::FilePath& plugin_path); |
49 | 49 |
50 // Sets this provider's list of plugins, exposed for testing. | 50 // Sets this provider's list of plugins, exposed for testing. |
51 void SetPluginsForTesting(const std::vector<content::WebPluginInfo>& plugins); | 51 void SetPluginsForTesting(const std::vector<content::WebPluginInfo>& plugins); |
52 | 52 |
53 // Posts a delayed task for RecordCurrentState. Returns true if new task is | |
54 // posted and false if there was one already waiting for execution. | |
55 // The param delay_sec is for unit tests. | |
56 bool DelayedRecordCurrentState(int delay_ms); | |
Alexei Svitkine (slow)
2014/08/05 21:35:21
Nit: How about RecordCurrentStateWithDelay(). (It'
gayane -on leave until 09-2017
2014/08/06 14:51:35
Done.
| |
57 | |
58 // If a delayed RecordCurrnetState task exists than cancel it, call | |
Alexei Svitkine (slow)
2014/08/05 21:35:21
Nit: Use the same verb tense here as a above (i.e.
gayane -on leave until 09-2017
2014/08/06 14:51:35
Done.
| |
59 // RecordCurrentState immediately and returns true. Otherwise return false. | |
60 bool ForcedRecordCurrentState(); | |
Alexei Svitkine (slow)
2014/08/05 21:35:21
Nit: How about RecordCurrentStateIfPending().
gayane -on leave until 09-2017
2014/08/06 14:51:35
Done.
| |
61 | |
53 // Returns true if process of type |type| should be counted as a plugin | 62 // Returns true if process of type |type| should be counted as a plugin |
54 // process, and false otherwise. | 63 // process, and false otherwise. |
55 static bool IsPluginProcess(int process_type); | 64 static bool IsPluginProcess(int process_type); |
56 | 65 |
57 // Registers local state prefs used by this class. | 66 // Registers local state prefs used by this class. |
58 static void RegisterPrefs(PrefRegistrySimple* registry); | 67 static void RegisterPrefs(PrefRegistrySimple* registry); |
59 | 68 |
60 private: | 69 private: |
61 struct ChildProcessStats; | 70 struct ChildProcessStats; |
62 | 71 |
(...skipping 20 matching lines...) Expand all Loading... | |
83 | 92 |
84 // Buffer of child process notifications for quick access. | 93 // Buffer of child process notifications for quick access. |
85 std::map<base::string16, ChildProcessStats> child_process_stats_buffer_; | 94 std::map<base::string16, ChildProcessStats> child_process_stats_buffer_; |
86 | 95 |
87 base::WeakPtrFactory<PluginMetricsProvider> weak_ptr_factory_; | 96 base::WeakPtrFactory<PluginMetricsProvider> weak_ptr_factory_; |
88 | 97 |
89 DISALLOW_COPY_AND_ASSIGN(PluginMetricsProvider); | 98 DISALLOW_COPY_AND_ASSIGN(PluginMetricsProvider); |
90 }; | 99 }; |
91 | 100 |
92 #endif // CHROME_BROWSER_METRICS_PLUGIN_METRICS_PROVIDER_H_ | 101 #endif // CHROME_BROWSER_METRICS_PLUGIN_METRICS_PROVIDER_H_ |
OLD | NEW |