| Index: third_party/WebKit/Source/platform/testing/TestingPlatformSupport.h
|
| diff --git a/third_party/WebKit/Source/platform/testing/TestingPlatformSupport.h b/third_party/WebKit/Source/platform/testing/TestingPlatformSupport.h
|
| index bc5b15b42161526deab638629d44185f93e9e156..c3d99f8e4718d546b8f37223188b557996f8840b 100644
|
| --- a/third_party/WebKit/Source/platform/testing/TestingPlatformSupport.h
|
| +++ b/third_party/WebKit/Source/platform/testing/TestingPlatformSupport.h
|
| @@ -116,6 +116,17 @@ protected:
|
| std::unique_ptr<TestingPlatformMockWebThread> m_mockWebThread;
|
| };
|
|
|
| +class ScopedUnittestsEnvironmentSetup {
|
| + WTF_MAKE_NONCOPYABLE(ScopedUnittestsEnvironmentSetup);
|
| +public:
|
| + ScopedUnittestsEnvironmentSetup();
|
| + ~ScopedUnittestsEnvironmentSetup();
|
| +
|
| +private:
|
| + class Impl;
|
| + std::unique_ptr<Impl> m_impl;
|
| +};
|
| +
|
| } // namespace blink
|
|
|
| #endif // TestingPlatformSupport_h
|
|
|