| Index: sky/engine/testing/platform/platform_impl.h
|
| diff --git a/sky/engine/testing/platform/platform_impl.h b/sky/engine/testing/platform/platform_impl.h
|
| index e537599d55d5f7937e5964cfbc3c94637f6d213e..07cf93535f6ebaf5f4c7974d98800e559e6ac9f2 100644
|
| --- a/sky/engine/testing/platform/platform_impl.h
|
| +++ b/sky/engine/testing/platform/platform_impl.h
|
| @@ -5,10 +5,6 @@
|
| #ifndef SKY_ENGINE_TESTING_PLATFORM_PLATFORM_IMPL_H_
|
| #define SKY_ENGINE_TESTING_PLATFORM_PLATFORM_IMPL_H_
|
|
|
| -#include "base/memory/scoped_ptr.h"
|
| -#include "base/message_loop/message_loop.h"
|
| -#include "base/threading/thread_local_storage.h"
|
| -#include "base/timer/timer.h"
|
| #include "sky/engine/public/platform/Platform.h"
|
| #include "sky/engine/testing/platform/webunittestsupport_impl.h"
|
|
|
| @@ -16,12 +12,12 @@ namespace sky {
|
|
|
| class PlatformImpl : public blink::Platform {
|
| public:
|
| - explicit PlatformImpl();
|
| - virtual ~PlatformImpl();
|
| + PlatformImpl();
|
| + ~PlatformImpl() override;
|
|
|
| // blink::Platform methods:
|
| - virtual blink::WebUnitTestSupport* unitTestSupport();
|
| - virtual blink::WebString defaultLocale();
|
| + blink::WebString defaultLocale() override;
|
| + blink::WebUnitTestSupport* unitTestSupport() override;
|
|
|
| private:
|
| WebUnitTestSupportImpl unit_test_support_;
|
|
|