Chromium Code Reviews| Index: chrome/browser/metrics/metrics_service.h |
| =================================================================== |
| --- chrome/browser/metrics/metrics_service.h (revision 88127) |
| +++ chrome/browser/metrics/metrics_service.h (working copy) |
| @@ -16,6 +16,7 @@ |
| #include "base/basictypes.h" |
| #include "base/gtest_prod_util.h" |
| #include "base/memory/scoped_ptr.h" |
| +#include "chrome/browser/io_thread.h" |
| #include "chrome/common/metrics_helpers.h" |
| #include "content/common/notification_observer.h" |
| #include "content/common/notification_registrar.h" |
| @@ -360,6 +361,13 @@ |
| // The URL for the metrics server. |
| std::wstring server_url_; |
| + // The TCP/UDP echo server to collect network connectivity stats. |
| + std::string network_stats_server_; |
| + |
| + // The IOThread for accessing global HostResolver to resolve |
| + // network_stats_server_ host. |
|
willchan no longer on Chromium
2011/06/08 14:07:02
Maybe you should document that this is only safe t
ramant (doing other things)
2011/06/08 17:47:17
Done.
|
| + IOThread* io_thread_; |
| + |
| // The identifier that's sent to the server with the log reports. |
| std::string client_id_; |