| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/logging.h" | |
| 6 #include "base/scoped_ptr.h" | 5 #include "base/scoped_ptr.h" |
| 7 #include "remoting/client/plugin/chromoting_plugin.h" | 6 #include "remoting/client/plugin/chromoting_plugin.h" |
| 8 #include "testing/gtest/include/gtest/gtest.h" | 7 #include "testing/gtest/include/gtest/gtest.h" |
| 9 | 8 |
| 10 namespace remoting { | 9 namespace remoting { |
| 11 | 10 |
| 12 // TODO(ajwong): Once ChromotingPlugin stablizes a little more, come up with | 11 // TODO(ajwong): Once ChromotingPlugin stablizes a little more, come up with |
| 13 // sane unittests. | 12 // sane unittests. |
| 14 class ChromotingPluginTest : public testing::Test { | 13 class ChromotingPluginTest : public testing::Test { |
| 15 protected: | 14 protected: |
| 16 virtual void SetUp() { | 15 virtual void SetUp() { |
| 17 } | 16 } |
| 18 }; | 17 }; |
| 19 | 18 |
| 20 } // namespace remoting | 19 } // namespace remoting |
| OLD | NEW |