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 3 // found in the LICENSE file. 4 5 #include "chrome/browser/chromeos/cros/cros_in_process_browser_test.h" 6 #include "chrome/test/in_process_browser_test.h" 7 8 namespace chromeos { 9 CrosInProcessBrowserTest()10CrosInProcessBrowserTest::CrosInProcessBrowserTest() { 11 cros_mock_.reset(new CrosMock()); 12 } 13 ~CrosInProcessBrowserTest()14CrosInProcessBrowserTest::~CrosInProcessBrowserTest() { 15 } 16 TearDownInProcessBrowserTestFixture()17void CrosInProcessBrowserTest::TearDownInProcessBrowserTestFixture() { 18 cros_mock_->TearDownMocks(); 19 } 20 21 } // namespace chromeos 22