OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 // The Mac interface forwards most of these commands to the application layer, | 5 // The Mac interface forwards most of these commands to the application layer, |
6 // and I'm not really sure what to do about most of them. | 6 // and I'm not really sure what to do about most of them. |
7 | 7 |
8 #include "config.h" | 8 #include "config.h" |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
11 | 11 |
12 MSVC_PUSH_WARNING_LEVEL(0); | 12 MSVC_PUSH_WARNING_LEVEL(0); |
13 #include "Document.h" | 13 #include "Document.h" |
14 #include "EditCommand.h" | 14 #include "EditCommand.h" |
15 #include "Editor.h" | 15 #include "Editor.h" |
16 #include "EventHandler.h" | 16 #include "EventHandler.h" |
17 #include "EventNames.h" | 17 #include "EventNames.h" |
18 #include "Frame.h" | 18 #include "Frame.h" |
19 #include "KeyboardCodes.h" | 19 #include "KeyboardCodes.h" |
20 #include "HTMLInputElement.h" | 20 #include "HTMLInputElement.h" |
21 #include "HTMLNames.h" | 21 #include "HTMLNames.h" |
22 #include "Frame.h" | 22 #include "Frame.h" |
23 #include "KeyboardEvent.h" | 23 #include "KeyboardEvent.h" |
24 #include "PlatformKeyboardEvent.h" | 24 #include "PlatformKeyboardEvent.h" |
25 #include "PlatformString.h" | 25 #include "PlatformString.h" |
| 26 #include "RenderObject.h" |
26 MSVC_POP_WARNING(); | 27 MSVC_POP_WARNING(); |
27 | 28 |
28 #include "WebKit.h" | 29 #include "WebKit.h" |
29 | 30 |
30 #undef LOG | 31 #undef LOG |
31 #include "base/message_loop.h" | 32 #include "base/message_loop.h" |
32 #include "base/string_util.h" | 33 #include "base/string_util.h" |
33 #include "webkit/glue/editor_client_impl.h" | 34 #include "webkit/glue/editor_client_impl.h" |
34 #include "webkit/glue/glue_util.h" | 35 #include "webkit/glue/glue_util.h" |
35 #include "webkit/glue/webkit_glue.h" | 36 #include "webkit/glue/webkit_glue.h" |
(...skipping 875 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
911 } | 912 } |
912 return L"(UNKNOWN AFFINITY)"; | 913 return L"(UNKNOWN AFFINITY)"; |
913 } | 914 } |
914 | 915 |
915 std::wstring EditorClientImpl::Describe(WebCore::CSSStyleDeclaration* style) { | 916 std::wstring EditorClientImpl::Describe(WebCore::CSSStyleDeclaration* style) { |
916 // TODO(pamg): Implement me. It's not clear what WebKit produces for this | 917 // TODO(pamg): Implement me. It's not clear what WebKit produces for this |
917 // (their [style description] method), and none of the layout tests provide | 918 // (their [style description] method), and none of the layout tests provide |
918 // an example. But because none of them use it, it's not yet important. | 919 // an example. But because none of them use it, it's not yet important. |
919 return std::wstring(); | 920 return std::wstring(); |
920 } | 921 } |
OLD | NEW |