OLD | NEW |
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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 #include "core/page/Page.h" | 113 #include "core/page/Page.h" |
114 #include "core/page/PrintContext.h" | 114 #include "core/page/PrintContext.h" |
115 #include "core/paint/DeprecatedPaintLayer.h" | 115 #include "core/paint/DeprecatedPaintLayer.h" |
116 #include "core/svg/SVGImageElement.h" | 116 #include "core/svg/SVGImageElement.h" |
117 #include "core/testing/DictionaryTest.h" | 117 #include "core/testing/DictionaryTest.h" |
118 #include "core/testing/GCObservation.h" | 118 #include "core/testing/GCObservation.h" |
119 #include "core/testing/InternalRuntimeFlags.h" | 119 #include "core/testing/InternalRuntimeFlags.h" |
120 #include "core/testing/InternalSettings.h" | 120 #include "core/testing/InternalSettings.h" |
121 #include "core/testing/LayerRect.h" | 121 #include "core/testing/LayerRect.h" |
122 #include "core/testing/LayerRectList.h" | 122 #include "core/testing/LayerRectList.h" |
123 #include "core/testing/PluginPlaceholderOptions.h" | |
124 #include "core/testing/PrivateScriptTest.h" | 123 #include "core/testing/PrivateScriptTest.h" |
125 #include "core/testing/TypeConversions.h" | 124 #include "core/testing/TypeConversions.h" |
126 #include "core/testing/UnionTypesTest.h" | 125 #include "core/testing/UnionTypesTest.h" |
127 #include "core/workers/WorkerThread.h" | 126 #include "core/workers/WorkerThread.h" |
128 #include "platform/Cursor.h" | 127 #include "platform/Cursor.h" |
129 #include "platform/Language.h" | 128 #include "platform/Language.h" |
130 #include "platform/PlatformKeyboardEvent.h" | 129 #include "platform/PlatformKeyboardEvent.h" |
131 #include "platform/RuntimeEnabledFeatures.h" | 130 #include "platform/RuntimeEnabledFeatures.h" |
132 #include "platform/TraceEvent.h" | 131 #include "platform/TraceEvent.h" |
133 #include "platform/geometry/IntRect.h" | 132 #include "platform/geometry/IntRect.h" |
(...skipping 2346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2480 | 2479 |
2481 return animator->setScrollbarsVisibleForTesting(visible); | 2480 return animator->setScrollbarsVisibleForTesting(visible); |
2482 } | 2481 } |
2483 | 2482 |
2484 void Internals::forceRestrictIFramePermissions() | 2483 void Internals::forceRestrictIFramePermissions() |
2485 { | 2484 { |
2486 RuntimeEnabledFeatures::setRestrictIFramePermissionsEnabled(true); | 2485 RuntimeEnabledFeatures::setRestrictIFramePermissionsEnabled(true); |
2487 } | 2486 } |
2488 | 2487 |
2489 } // namespace blink | 2488 } // namespace blink |
OLD | NEW |