Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Unified Diff: blimp/client/core/context/blimp_client_context_impl.h

Issue 2480203002: ui: Cleanup class/struct forward declarations (Closed)
Patch Set: Sync CL to position 430550 Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: blimp/client/core/context/blimp_client_context_impl.h
diff --git a/blimp/client/core/context/blimp_client_context_impl.h b/blimp/client/core/context/blimp_client_context_impl.h
index 55135eae8976697014072d50796b9b816b5676e9..b993556cd9ee7977aa2ddbd712a372dadfc3cb33 100644
--- a/blimp/client/core/context/blimp_client_context_impl.h
+++ b/blimp/client/core/context/blimp_client_context_impl.h
@@ -56,7 +56,7 @@ class BlimpClientContextImpl
scoped_refptr<base::SingleThreadTaskRunner> io_thread_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> file_thread_task_runner,
std::unique_ptr<CompositorDependencies> compositor_dependencies,
- PrefService* local_state);
+ std::unique_ptr<Settings> settings);
~BlimpClientContextImpl() override;
// BlimpClientContext implementation.
@@ -78,6 +78,8 @@ class BlimpClientContextImpl
IdentitySource* GetIdentitySource() override;
ConnectionStatus* GetConnectionStatus() override;
+ Settings* settings() { return settings_.get(); }
+
private:
// Called when the AssignmentSource is finished getting an Assignment. Will
// then call |ConnectWithAssignment| to initiate the actual connection.

Powered by Google App Engine
This is Rietveld 408576698