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

Side by Side Diff: Source/core/testing/Internals.cpp

Issue 1293683003: Move DocumentMarker related files to editing/markers/ from dom/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 2015-08-14T22:49:39 Rebase 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/paint/SVGInlineTextBoxPainter.cpp ('k') | Source/web/AssertMatchingEnums.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) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2013 Apple Inc. All rights reserved. 3 * Copyright (C) 2013 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 #include "core/css/StyleSheetContents.h" 42 #include "core/css/StyleSheetContents.h"
43 #include "core/css/resolver/StyleResolver.h" 43 #include "core/css/resolver/StyleResolver.h"
44 #include "core/css/resolver/StyleResolverStats.h" 44 #include "core/css/resolver/StyleResolverStats.h"
45 #include "core/css/resolver/ViewportStyleResolver.h" 45 #include "core/css/resolver/ViewportStyleResolver.h"
46 #include "core/dom/ClientRect.h" 46 #include "core/dom/ClientRect.h"
47 #include "core/dom/ClientRectList.h" 47 #include "core/dom/ClientRectList.h"
48 #include "core/dom/DOMArrayBuffer.h" 48 #include "core/dom/DOMArrayBuffer.h"
49 #include "core/dom/DOMPoint.h" 49 #include "core/dom/DOMPoint.h"
50 #include "core/dom/DOMStringList.h" 50 #include "core/dom/DOMStringList.h"
51 #include "core/dom/Document.h" 51 #include "core/dom/Document.h"
52 #include "core/dom/DocumentMarker.h"
53 #include "core/dom/DocumentMarkerController.h"
54 #include "core/dom/Element.h" 52 #include "core/dom/Element.h"
55 #include "core/dom/ExceptionCode.h" 53 #include "core/dom/ExceptionCode.h"
56 #include "core/dom/Iterator.h" 54 #include "core/dom/Iterator.h"
57 #include "core/dom/NodeComputedStyle.h" 55 #include "core/dom/NodeComputedStyle.h"
58 #include "core/dom/PseudoElement.h" 56 #include "core/dom/PseudoElement.h"
59 #include "core/dom/Range.h" 57 #include "core/dom/Range.h"
60 #include "core/dom/StaticNodeList.h" 58 #include "core/dom/StaticNodeList.h"
61 #include "core/dom/StyleEngine.h" 59 #include "core/dom/StyleEngine.h"
62 #include "core/dom/TreeScope.h" 60 #include "core/dom/TreeScope.h"
63 #include "core/dom/ViewportDescription.h" 61 #include "core/dom/ViewportDescription.h"
64 #include "core/dom/shadow/ComposedTreeTraversal.h" 62 #include "core/dom/shadow/ComposedTreeTraversal.h"
65 #include "core/dom/shadow/ElementShadow.h" 63 #include "core/dom/shadow/ElementShadow.h"
66 #include "core/dom/shadow/SelectRuleFeatureSet.h" 64 #include "core/dom/shadow/SelectRuleFeatureSet.h"
67 #include "core/dom/shadow/ShadowRoot.h" 65 #include "core/dom/shadow/ShadowRoot.h"
68 #include "core/editing/Editor.h" 66 #include "core/editing/Editor.h"
69 #include "core/editing/PlainTextRange.h" 67 #include "core/editing/PlainTextRange.h"
70 #include "core/editing/Serialization.h" 68 #include "core/editing/Serialization.h"
71 #include "core/editing/SpellCheckRequester.h" 69 #include "core/editing/SpellCheckRequester.h"
72 #include "core/editing/SpellChecker.h" 70 #include "core/editing/SpellChecker.h"
73 #include "core/editing/SurroundingText.h" 71 #include "core/editing/SurroundingText.h"
74 #include "core/editing/iterators/TextIterator.h" 72 #include "core/editing/iterators/TextIterator.h"
73 #include "core/editing/markers/DocumentMarker.h"
74 #include "core/editing/markers/DocumentMarkerController.h"
75 #include "core/fetch/MemoryCache.h" 75 #include "core/fetch/MemoryCache.h"
76 #include "core/fetch/ResourceFetcher.h" 76 #include "core/fetch/ResourceFetcher.h"
77 #include "core/frame/EventHandlerRegistry.h" 77 #include "core/frame/EventHandlerRegistry.h"
78 #include "core/frame/FrameConsole.h" 78 #include "core/frame/FrameConsole.h"
79 #include "core/frame/FrameView.h" 79 #include "core/frame/FrameView.h"
80 #include "core/frame/LocalDOMWindow.h" 80 #include "core/frame/LocalDOMWindow.h"
81 #include "core/frame/LocalFrame.h" 81 #include "core/frame/LocalFrame.h"
82 #include "core/frame/Settings.h" 82 #include "core/frame/Settings.h"
83 #include "core/html/HTMLContentElement.h" 83 #include "core/html/HTMLContentElement.h"
84 #include "core/html/HTMLIFrameElement.h" 84 #include "core/html/HTMLIFrameElement.h"
(...skipping 2396 matching lines...) Expand 10 before | Expand all | Expand 10 after
2481 2481
2482 return animator->setScrollbarsVisibleForTesting(visible); 2482 return animator->setScrollbarsVisibleForTesting(visible);
2483 } 2483 }
2484 2484
2485 void Internals::forceRestrictIFramePermissions() 2485 void Internals::forceRestrictIFramePermissions()
2486 { 2486 {
2487 RuntimeEnabledFeatures::setRestrictIFramePermissionsEnabled(true); 2487 RuntimeEnabledFeatures::setRestrictIFramePermissionsEnabled(true);
2488 } 2488 }
2489 2489
2490 } // namespace blink 2490 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/paint/SVGInlineTextBoxPainter.cpp ('k') | Source/web/AssertMatchingEnums.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698