Chromium Code Reviews| Index: blimp/client/core/blimp_client_context_impl.h |
| diff --git a/blimp/client/core/blimp_client_context_impl.h b/blimp/client/core/blimp_client_context_impl.h |
| index 86c3cc8bee4ccca718081e240a4d305612f7e67f..4256c4d4a6cf28897a4cfb0b253c42b9a2f1eaf3 100644 |
| --- a/blimp/client/core/blimp_client_context_impl.h |
| +++ b/blimp/client/core/blimp_client_context_impl.h |
| @@ -6,6 +6,7 @@ |
| #define BLIMP_CLIENT_CORE_BLIMP_CLIENT_CONTEXT_IMPL_H_ |
| #include <memory> |
| +#include <string> |
| #include "base/macros.h" |
| #include "base/memory/ref_counted.h" |
| @@ -59,6 +60,9 @@ class BlimpClientContextImpl : public BlimpClientContext, |
| virtual void ConnectWithAssignment(AssignmentRequestResult result, |
| const Assignment& assignment); |
| + // Register features' message senders and receivers. |
|
Kevin M
2016/08/22 22:09:34
Function no longer exists in the .cc; remove this
CJ
2016/08/23 18:07:13
Done.
|
| + void RegisterFeatures(); |
| + |
| // Provides functionality from the embedder. |
| BlimpClientContextDelegate* delegate_ = nullptr; |
| @@ -74,6 +78,9 @@ class BlimpClientContextImpl : public BlimpClientContext, |
| std::unique_ptr<BlimpContentsManager> blimp_contents_manager_; |
| + // TODO(lethalantidote): Add unique_ptr to GeolocationFeature and |
| + // register it. |
| + |
| // Container struct for network components. |
| // Must be deleted on the IO thread. |
| std::unique_ptr<ClientNetworkComponents> net_components_; |