| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "webkit/tools/test_shell/mock_webclipboard_impl.h" | 5 #include "webkit/tools/test_shell/mock_webclipboard_impl.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/stl_util.h" | 10 #include "base/stl_util.h" |
| 11 #include "base/string_util.h" | 11 #include "base/string_util.h" |
| 12 #include "base/utf_string_conversions.h" | 12 #include "base/utf_string_conversions.h" |
| 13 #include "third_party/WebKit/Source/Platform/chromium/public/WebCommon.h" | 13 #include "third_party/WebKit/public/platform/WebCommon.h" |
| 14 #include "third_party/WebKit/Source/Platform/chromium/public/WebDragData.h" | 14 #include "third_party/WebKit/public/platform/WebDragData.h" |
| 15 #include "third_party/WebKit/Source/Platform/chromium/public/WebImage.h" | 15 #include "third_party/WebKit/public/platform/WebImage.h" |
| 16 #include "third_party/WebKit/Source/Platform/chromium/public/WebURL.h" | 16 #include "third_party/WebKit/public/platform/WebURL.h" |
| 17 #include "ui/base/clipboard/clipboard.h" | 17 #include "ui/base/clipboard/clipboard.h" |
| 18 #include "webkit/glue/webclipboard_impl.h" | 18 #include "webkit/glue/webclipboard_impl.h" |
| 19 #include "webkit/glue/webkit_glue.h" | 19 #include "webkit/glue/webkit_glue.h" |
| 20 #include "webkit/support/webkit_support_gfx.h" | 20 #include "webkit/support/webkit_support_gfx.h" |
| 21 | 21 |
| 22 using WebKit::WebDragData; | 22 using WebKit::WebDragData; |
| 23 using WebKit::WebString; | 23 using WebKit::WebString; |
| 24 using WebKit::WebURL; | 24 using WebKit::WebURL; |
| 25 using WebKit::WebVector; | 25 using WebKit::WebVector; |
| 26 | 26 |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 } | 198 } |
| 199 } | 199 } |
| 200 | 200 |
| 201 void MockWebClipboardImpl::clear() { | 201 void MockWebClipboardImpl::clear() { |
| 202 m_plainText = WebString(); | 202 m_plainText = WebString(); |
| 203 m_htmlText = WebString(); | 203 m_htmlText = WebString(); |
| 204 m_image.reset(); | 204 m_image.reset(); |
| 205 m_customData.clear(); | 205 m_customData.clear(); |
| 206 m_writeSmartPaste = false; | 206 m_writeSmartPaste = false; |
| 207 } | 207 } |
| OLD | NEW |