Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(422)

Side by Side Diff: Source/web/WebViewImpl.cpp

Issue 1295073002: Move serializer related files in core/editing/ related files into core/editing/serializers/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 2015-08-17T15:24:31 Rebase for Source/web/WebPageSerializerImpl.cpp Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/web/WebPageSerializerImpl.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/web/WebPageSerializerImpl.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698