| Index: blimp/engine/testing/app/blimp_content_main_delegate_for_test.h
|
| diff --git a/blimp/engine/testing/app/blimp_content_main_delegate_for_test.h b/blimp/engine/testing/app/blimp_content_main_delegate_for_test.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..5cf9a6e8ace2a7147d4ce82a65190af8d68e5a08
|
| --- /dev/null
|
| +++ b/blimp/engine/testing/app/blimp_content_main_delegate_for_test.h
|
| @@ -0,0 +1,28 @@
|
| +// Copyright 2016 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.
|
| +
|
| +#ifndef BLIMP_ENGINE_TESTING_APP_BLIMP_CONTENT_MAIN_DELEGATE_FOR_TEST_H_
|
| +#define BLIMP_ENGINE_TESTING_APP_BLIMP_CONTENT_MAIN_DELEGATE_FOR_TEST_H_
|
| +
|
| +#include <memory>
|
| +
|
| +#include "blimp/engine/app/blimp_content_main_delegate.h"
|
| +
|
| +namespace blimp {
|
| +namespace engine {
|
| +
|
| +class BlimpContentMainDelegateForTest : public BlimpContentMainDelegate {
|
| + public:
|
| + BlimpContentMainDelegateForTest();
|
| + ~BlimpContentMainDelegateForTest() = default;
|
| +
|
| + // Override content::ContentMainDelegate implementation
|
| + // in class BlimpContentMainDelegate.
|
| + content::ContentBrowserClient* CreateContentBrowserClient() override;
|
| +};
|
| +
|
| +} // namespace engine
|
| +} // namespace blimp
|
| +
|
| +#endif // BLIMP_ENGINE_TESTING_APP_BLIMP_CONTENT_MAIN_DELEGATE_FOR_TEST_H_
|
|
|