Chromium Code Reviews| Index: net/proxy/proxy_config_service.h |
| diff --git a/net/proxy/proxy_config_service.h b/net/proxy/proxy_config_service.h |
| index 5e14995d0933fe615f8d5b1a0eb1dadb877b938e..33d0e148435732df64ba60b6816d1c61fa910e68 100644 |
| --- a/net/proxy/proxy_config_service.h |
| +++ b/net/proxy/proxy_config_service.h |
| @@ -61,6 +61,11 @@ class NET_EXPORT ProxyConfigService { |
| // X seconds at which point they check for changes. However that has |
| // the disadvantage of doing continuous work even during idle periods. |
| virtual void OnLazyPoll() {} |
| + |
| + // Called on the main thread to indicate now is the time for shutdown work |
| + // that must occur on the main thread. Its also one of the last safe times |
| + // to post shutdown tasks to other browser threads. |
|
Ryan Sleevi
2012/10/19 17:56:43
nit: comment layering violation within net/ "to ot
|
| + virtual void StartTearDown() {} |
| }; |
| } // namespace net |