OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2016 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. | |
4 | |
5 #ifndef WebMockClipboard_h | |
6 #define WebMockClipboard_h | |
7 | |
8 #include "public/platform/WebClipboard.h" | |
9 #include "public/platform/WebImage.h" | |
10 | |
11 namespace blink { | |
12 | |
13 class WebMockClipboard : public WebClipboard { | |
dcheng
2016/04/11 03:22:54
I'm not particularly thrilled about adding this cl
| |
14 public: | |
15 virtual WebImage readRawImage(Buffer) { return WebImage(); } | |
16 }; | |
17 | |
18 } // namespace blink | |
19 | |
20 #endif | |
OLD | NEW |