| Index: chrome/browser/ssl/chrome_ssl_host_state_decisions_test.h
|
| diff --git a/chrome/browser/ssl/chrome_ssl_host_state_decisions_test.h b/chrome/browser/ssl/chrome_ssl_host_state_decisions_test.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2deeafb262b8019f7d9a90c60773316e24471093
|
| --- /dev/null
|
| +++ b/chrome/browser/ssl/chrome_ssl_host_state_decisions_test.h
|
| @@ -0,0 +1,26 @@
|
| +// Copyright (c) 2014 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +//
|
| +#include "chrome/browser/ssl/chrome_ssl_host_state_decisions.h"
|
| +#include "chrome/test/base/in_process_browser_test.h"
|
| +#include "testing/gtest/include/gtest/gtest.h"
|
| +
|
| +#ifndef CHROME_BROWSER_SSL_CHROME_SSL_HOST_STATE_DECISIONS_TEST_H_
|
| +#define CHROME_BROWSER_SSL_CHROME_SSL_HOST_STATE_DECISIONS_TEST_H_
|
| +
|
| +class ChromeSSLHostStateDecisionsTest : public InProcessBrowserTest {
|
| + public:
|
| + ChromeSSLHostStateDecisionsTest() {};
|
| + virtual ~ChromeSSLHostStateDecisionsTest() {};
|
| +
|
| + // InProcessBrowserTest:
|
| + virtual void SetUpInProcessBrowserTestFixture() OVERRIDE{};
|
| + virtual void SetUpOnMainThread() OVERRIDE{};
|
| + virtual void CleanUpOnMainThread() OVERRIDE{};
|
| +
|
| + virtual void SetUpOnIOThread() {};
|
| + virtual void CleanUpOnIOThread() {};
|
| +};
|
| +
|
| +#endif // CHROME_BROWSER_SSL_CHROME_SSL_HOST_STATE_DECISIONS_TEST_H_
|
|
|