| Index: remoting/host/chromoting_host_unittest.cc
|
| diff --git a/remoting/host/chromoting_host_unittest.cc b/remoting/host/chromoting_host_unittest.cc
|
| index 5ebe0513f43eb479d4240f1360a26a6c1cbf53fd..a45330a56697339fe61bcdc3f4ded493c714ba7c 100644
|
| --- a/remoting/host/chromoting_host_unittest.cc
|
| +++ b/remoting/host/chromoting_host_unittest.cc
|
| @@ -11,6 +11,7 @@
|
| #include "remoting/host/chromoting_host.h"
|
| #include "remoting/host/chromoting_host_context.h"
|
| #include "remoting/host/desktop_environment.h"
|
| +#include "remoting/host/extension.h"
|
| #include "remoting/host/host_mock_objects.h"
|
| #include "remoting/host/screen_capturer_fake.h"
|
| #include "remoting/jingle_glue/mock_objects.h"
|
| @@ -195,7 +196,8 @@ class ChromotingHostTest : public testing::Test {
|
| connection.Pass(),
|
| desktop_environment_factory_.get(),
|
| base::TimeDelta(),
|
| - NULL));
|
| + NULL,
|
| + &extensions_));
|
|
|
| connection_ptr->set_host_stub(client.get());
|
|
|
| @@ -433,6 +435,7 @@ class ChromotingHostTest : public testing::Test {
|
| protocol::Session::EventHandler* session_unowned2_event_handler_;
|
| scoped_ptr<protocol::CandidateSessionConfig> empty_candidate_config_;
|
| scoped_ptr<protocol::CandidateSessionConfig> default_candidate_config_;
|
| + ExtensionList extensions_;
|
|
|
| MockConnectionToClient*& get_connection(int connection_index) {
|
| return (connection_index == 0) ? connection1_ : connection2_;
|
|
|