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