| Index: remoting/host/chromoting_host.h
|
| diff --git a/remoting/host/chromoting_host.h b/remoting/host/chromoting_host.h
|
| index fb26aec8d349a36232596348a62d61012abe0ea1..f13311cba94f2102471c02180c1b3a5e09f051c4 100644
|
| --- a/remoting/host/chromoting_host.h
|
| +++ b/remoting/host/chromoting_host.h
|
| @@ -15,6 +15,7 @@
|
| #include "remoting/host/client_session.h"
|
| #include "remoting/host/desktop_environment.h"
|
| #include "remoting/host/host_status_observer.h"
|
| +#include "remoting/host/ui_strings.h"
|
| #include "remoting/jingle_glue/jingle_thread.h"
|
| #include "remoting/jingle_glue/signal_strategy.h"
|
| #include "remoting/protocol/session_manager.h"
|
| @@ -144,6 +145,8 @@ class ChromotingHost : public base::RefCountedThreadSafe<ChromotingHost>,
|
| // is ignored.
|
| void PauseSession(bool pause);
|
|
|
| + UIStrings* ui_strings() { return &ui_strings_; }
|
| +
|
| private:
|
| friend class base::RefCountedThreadSafe<ChromotingHost>;
|
| friend class ChromotingHostTest;
|
| @@ -230,6 +233,8 @@ class ChromotingHost : public base::RefCountedThreadSafe<ChromotingHost>,
|
| // shutdown. Used only while |state_| is set to kStopping.
|
| std::vector<Task*> shutdown_tasks_;
|
|
|
| + UIStrings ui_strings_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(ChromotingHost);
|
| };
|
|
|
|
|