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

Side by Side Diff: Source/web/WebLocalFrameImpl.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/core/xmlhttprequest/XMLHttpRequest.cpp ('k') | Source/web/WebNode.cpp » ('j') | 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) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 #include "core/dom/MessagePort.h" 101 #include "core/dom/MessagePort.h"
102 #include "core/dom/Node.h" 102 #include "core/dom/Node.h"
103 #include "core/dom/NodeTraversal.h" 103 #include "core/dom/NodeTraversal.h"
104 #include "core/dom/SuspendableTask.h" 104 #include "core/dom/SuspendableTask.h"
105 #include "core/dom/shadow/ShadowRoot.h" 105 #include "core/dom/shadow/ShadowRoot.h"
106 #include "core/editing/EditingUtilities.h" 106 #include "core/editing/EditingUtilities.h"
107 #include "core/editing/Editor.h" 107 #include "core/editing/Editor.h"
108 #include "core/editing/FrameSelection.h" 108 #include "core/editing/FrameSelection.h"
109 #include "core/editing/InputMethodController.h" 109 #include "core/editing/InputMethodController.h"
110 #include "core/editing/PlainTextRange.h" 110 #include "core/editing/PlainTextRange.h"
111 #include "core/editing/Serialization.h"
112 #include "core/editing/TextAffinity.h" 111 #include "core/editing/TextAffinity.h"
113 #include "core/editing/iterators/TextIterator.h" 112 #include "core/editing/iterators/TextIterator.h"
113 #include "core/editing/serializers/Serialization.h"
114 #include "core/editing/spellcheck/SpellChecker.h" 114 #include "core/editing/spellcheck/SpellChecker.h"
115 #include "core/fetch/ResourceFetcher.h" 115 #include "core/fetch/ResourceFetcher.h"
116 #include "core/fetch/SubstituteData.h" 116 #include "core/fetch/SubstituteData.h"
117 #include "core/frame/Console.h" 117 #include "core/frame/Console.h"
118 #include "core/frame/LocalDOMWindow.h" 118 #include "core/frame/LocalDOMWindow.h"
119 #include "core/frame/FrameHost.h" 119 #include "core/frame/FrameHost.h"
120 #include "core/frame/FrameView.h" 120 #include "core/frame/FrameView.h"
121 #include "core/frame/Settings.h" 121 #include "core/frame/Settings.h"
122 #include "core/html/HTMLAnchorElement.h" 122 #include "core/html/HTMLAnchorElement.h"
123 #include "core/html/HTMLCollection.h" 123 #include "core/html/HTMLCollection.h"
(...skipping 2082 matching lines...) Expand 10 before | Expand all | Expand 10 after
2206 } 2206 }
2207 2207
2208 WebSandboxFlags WebLocalFrameImpl::effectiveSandboxFlags() const 2208 WebSandboxFlags WebLocalFrameImpl::effectiveSandboxFlags() const
2209 { 2209 {
2210 if (!frame()) 2210 if (!frame())
2211 return WebSandboxFlags::None; 2211 return WebSandboxFlags::None;
2212 return static_cast<WebSandboxFlags>(frame()->loader().effectiveSandboxFlags( )); 2212 return static_cast<WebSandboxFlags>(frame()->loader().effectiveSandboxFlags( ));
2213 } 2213 }
2214 2214
2215 } // namespace blink 2215 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/xmlhttprequest/XMLHttpRequest.cpp ('k') | Source/web/WebNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698