Blink roll 25b6bd3a7a131ffe68d809546ad1a20707915cdc:3a503f41ae42e5b79cfcd2ff10e65afde...
[chromium-blink-merge.git] / mojo / services / html_viewer / test_blink_platform_impl.h
blobe2fcf7695045418b4839bad985ace05884412ef5
1 // Copyright 2014 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.
5 #ifndef MOJO_SERVICES_HTML_VIEWER_TEST_BLINK_PLATFORM_IMPL_H_
6 #define MOJO_SERVICES_HTML_VIEWER_TEST_BLINK_PLATFORM_IMPL_H_
8 #include "mojo/services/html_viewer/blink_platform_impl.h"
10 #include "third_party/WebKit/public/platform/WebClipboard.h"
11 #include "third_party/WebKit/public/platform/WebCookieJar.h"
13 namespace mojo {
15 class TestBlinkPlatformImpl : public BlinkPlatformImpl {
16 public:
17 TestBlinkPlatformImpl();
18 virtual ~TestBlinkPlatformImpl();
20 private:
21 // blink::Platform methods:
22 virtual blink::WebCookieJar* cookieJar();
23 virtual blink::WebClipboard* clipboard();
25 blink::WebClipboard clipboard_;
26 blink::WebCookieJar cookie_jar_;
29 } // namespace mojo
31 #endif // MOJO_SERVICES_HTML_VIEWER_TEST_BLINK_PLATFORM_IMPL_H_