| 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 25 matching lines...) Expand all Loading... |
| 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/ElementTraversal.h" | 39 #include "core/dom/ElementTraversal.h" |
| 40 #include "core/dom/Fullscreen.h" | 40 #include "core/dom/Fullscreen.h" |
| 41 #include "core/dom/LayoutTreeBuilderTraversal.h" | 41 #include "core/dom/LayoutTreeBuilderTraversal.h" |
| 42 #include "core/dom/Text.h" | 42 #include "core/dom/Text.h" |
| 43 #include "core/editing/EditingUtilities.h" | 43 #include "core/editing/EditingUtilities.h" |
| 44 #include "core/editing/Editor.h" | 44 #include "core/editing/Editor.h" |
| 45 #include "core/editing/FrameSelection.h" | 45 #include "core/editing/FrameSelection.h" |
| 46 #include "core/editing/HTMLInterchange.h" | |
| 47 #include "core/editing/InputMethodController.h" | 46 #include "core/editing/InputMethodController.h" |
| 48 #include "core/editing/Serialization.h" | |
| 49 #include "core/editing/iterators/TextIterator.h" | 47 #include "core/editing/iterators/TextIterator.h" |
| 50 #include "core/editing/markers/DocumentMarkerController.h" | 48 #include "core/editing/markers/DocumentMarkerController.h" |
| 49 #include "core/editing/serializers/HTMLInterchange.h" |
| 50 #include "core/editing/serializers/Serialization.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 4435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4496 if (m_pageColorOverlay) | 4496 if (m_pageColorOverlay) |
| 4497 m_pageColorOverlay->update(); | 4497 m_pageColorOverlay->update(); |
| 4498 if (m_inspectorOverlay) { | 4498 if (m_inspectorOverlay) { |
| 4499 PageOverlay* inspectorPageOverlay = m_inspectorOverlay->pageOverlay(); | 4499 PageOverlay* inspectorPageOverlay = m_inspectorOverlay->pageOverlay(); |
| 4500 if (inspectorPageOverlay) | 4500 if (inspectorPageOverlay) |
| 4501 inspectorPageOverlay->update(); | 4501 inspectorPageOverlay->update(); |
| 4502 } | 4502 } |
| 4503 } | 4503 } |
| 4504 | 4504 |
| 4505 } // namespace blink | 4505 } // namespace blink |
| OLD | NEW |