OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 18 matching lines...) Expand all Loading... |
29 */ | 29 */ |
30 | 30 |
31 #include "config.h" | 31 #include "config.h" |
32 #include "web/WebViewImpl.h" | 32 #include "web/WebViewImpl.h" |
33 | 33 |
34 #include "core/CSSValueKeywords.h" | 34 #include "core/CSSValueKeywords.h" |
35 #include "core/HTMLNames.h" | 35 #include "core/HTMLNames.h" |
36 #include "core/InputTypeNames.h" | 36 #include "core/InputTypeNames.h" |
37 #include "core/clipboard/DataObject.h" | 37 #include "core/clipboard/DataObject.h" |
38 #include "core/dom/Document.h" | 38 #include "core/dom/Document.h" |
39 #include "core/dom/DocumentMarkerController.h" | |
40 #include "core/dom/ElementTraversal.h" | 39 #include "core/dom/ElementTraversal.h" |
41 #include "core/dom/Fullscreen.h" | 40 #include "core/dom/Fullscreen.h" |
42 #include "core/dom/LayoutTreeBuilderTraversal.h" | 41 #include "core/dom/LayoutTreeBuilderTraversal.h" |
43 #include "core/dom/Text.h" | 42 #include "core/dom/Text.h" |
44 #include "core/editing/EditingUtilities.h" | 43 #include "core/editing/EditingUtilities.h" |
45 #include "core/editing/Editor.h" | 44 #include "core/editing/Editor.h" |
46 #include "core/editing/FrameSelection.h" | 45 #include "core/editing/FrameSelection.h" |
47 #include "core/editing/HTMLInterchange.h" | 46 #include "core/editing/HTMLInterchange.h" |
48 #include "core/editing/InputMethodController.h" | 47 #include "core/editing/InputMethodController.h" |
49 #include "core/editing/Serialization.h" | 48 #include "core/editing/Serialization.h" |
50 #include "core/editing/iterators/TextIterator.h" | 49 #include "core/editing/iterators/TextIterator.h" |
| 50 #include "core/editing/markers/DocumentMarkerController.h" |
51 #include "core/events/KeyboardEvent.h" | 51 #include "core/events/KeyboardEvent.h" |
52 #include "core/events/UIEventWithKeyState.h" | 52 #include "core/events/UIEventWithKeyState.h" |
53 #include "core/events/WheelEvent.h" | 53 #include "core/events/WheelEvent.h" |
54 #include "core/fetch/UniqueIdentifier.h" | 54 #include "core/fetch/UniqueIdentifier.h" |
55 #include "core/frame/EventHandlerRegistry.h" | 55 #include "core/frame/EventHandlerRegistry.h" |
56 #include "core/frame/FrameHost.h" | 56 #include "core/frame/FrameHost.h" |
57 #include "core/frame/FrameView.h" | 57 #include "core/frame/FrameView.h" |
58 #include "core/frame/LocalFrame.h" | 58 #include "core/frame/LocalFrame.h" |
59 #include "core/frame/PageScaleConstraintsSet.h" | 59 #include "core/frame/PageScaleConstraintsSet.h" |
60 #include "core/frame/RemoteFrame.h" | 60 #include "core/frame/RemoteFrame.h" |
(...skipping 4449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4510 if (m_pageColorOverlay) | 4510 if (m_pageColorOverlay) |
4511 m_pageColorOverlay->update(); | 4511 m_pageColorOverlay->update(); |
4512 if (m_inspectorOverlay) { | 4512 if (m_inspectorOverlay) { |
4513 PageOverlay* inspectorPageOverlay = m_inspectorOverlay->pageOverlay(); | 4513 PageOverlay* inspectorPageOverlay = m_inspectorOverlay->pageOverlay(); |
4514 if (inspectorPageOverlay) | 4514 if (inspectorPageOverlay) |
4515 inspectorPageOverlay->update(); | 4515 inspectorPageOverlay->update(); |
4516 } | 4516 } |
4517 } | 4517 } |
4518 | 4518 |
4519 } // namespace blink | 4519 } // namespace blink |
OLD | NEW |