| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 #include "core/page/PagePopupController.h" | 97 #include "core/page/PagePopupController.h" |
| 98 #include "core/page/PrintContext.h" | 98 #include "core/page/PrintContext.h" |
| 99 #include "core/page/Settings.h" | 99 #include "core/page/Settings.h" |
| 100 #include "core/page/animation/AnimationController.h" | 100 #include "core/page/animation/AnimationController.h" |
| 101 #include "core/page/scrolling/ScrollingCoordinator.h" | 101 #include "core/page/scrolling/ScrollingCoordinator.h" |
| 102 #include "core/platform/ColorChooser.h" | 102 #include "core/platform/ColorChooser.h" |
| 103 #include "core/platform/Cursor.h" | 103 #include "core/platform/Cursor.h" |
| 104 #include "platform/Language.h" | 104 #include "platform/Language.h" |
| 105 #include "core/platform/chromium/TraceEvent.h" | 105 #include "core/platform/chromium/TraceEvent.h" |
| 106 #include "core/platform/graphics/GraphicsLayer.h" | 106 #include "core/platform/graphics/GraphicsLayer.h" |
| 107 #include "core/platform/graphics/IntRect.h" | |
| 108 #include "core/platform/graphics/filters/FilterOperation.h" | 107 #include "core/platform/graphics/filters/FilterOperation.h" |
| 109 #include "core/platform/graphics/filters/FilterOperations.h" | 108 #include "core/platform/graphics/filters/FilterOperations.h" |
| 110 #include "core/platform/graphics/gpu/SharedGraphicsContext3D.h" | 109 #include "core/platform/graphics/gpu/SharedGraphicsContext3D.h" |
| 111 #include "core/platform/mock/PlatformSpeechSynthesizerMock.h" | 110 #include "core/platform/mock/PlatformSpeechSynthesizerMock.h" |
| 112 #include "core/rendering/RenderLayer.h" | 111 #include "core/rendering/RenderLayer.h" |
| 113 #include "core/rendering/RenderLayerBacking.h" | 112 #include "core/rendering/RenderLayerBacking.h" |
| 114 #include "core/rendering/RenderLayerCompositor.h" | 113 #include "core/rendering/RenderLayerCompositor.h" |
| 115 #include "core/rendering/RenderMenuList.h" | 114 #include "core/rendering/RenderMenuList.h" |
| 116 #include "core/rendering/RenderObject.h" | 115 #include "core/rendering/RenderObject.h" |
| 117 #include "core/rendering/RenderTreeAsText.h" | 116 #include "core/rendering/RenderTreeAsText.h" |
| 118 #include "core/rendering/RenderView.h" | 117 #include "core/rendering/RenderView.h" |
| 119 #include "core/testing/GCObservation.h" | 118 #include "core/testing/GCObservation.h" |
| 120 #include "core/workers/WorkerThread.h" | 119 #include "core/workers/WorkerThread.h" |
| 121 #include "modules/speech/DOMWindowSpeechSynthesis.h" | 120 #include "modules/speech/DOMWindowSpeechSynthesis.h" |
| 122 #include "modules/speech/SpeechSynthesis.h" | 121 #include "modules/speech/SpeechSynthesis.h" |
| 122 #include "platform/geometry/IntRect.h" |
| 123 #include "public/platform/WebLayer.h" | 123 #include "public/platform/WebLayer.h" |
| 124 #include "weborigin/SchemeRegistry.h" | 124 #include "weborigin/SchemeRegistry.h" |
| 125 #include "wtf/dtoa.h" | 125 #include "wtf/dtoa.h" |
| 126 #include "wtf/text/StringBuffer.h" | 126 #include "wtf/text/StringBuffer.h" |
| 127 #include <v8.h> | 127 #include <v8.h> |
| 128 | 128 |
| 129 namespace WebCore { | 129 namespace WebCore { |
| 130 | 130 |
| 131 static MockPagePopupDriver* s_pagePopupDriver = 0; | 131 static MockPagePopupDriver* s_pagePopupDriver = 0; |
| 132 | 132 |
| (...skipping 2147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2280 return false; | 2280 return false; |
| 2281 sharedContext->extensions()->loseContextCHROMIUM(Extensions3D::GUILTY_CONTEX
T_RESET_ARB, Extensions3D::INNOCENT_CONTEXT_RESET_ARB); | 2281 sharedContext->extensions()->loseContextCHROMIUM(Extensions3D::GUILTY_CONTEX
T_RESET_ARB, Extensions3D::INNOCENT_CONTEXT_RESET_ARB); |
| 2282 // To prevent tests that call loseSharedGraphicsContext3D from being | 2282 // To prevent tests that call loseSharedGraphicsContext3D from being |
| 2283 // flaky, we call finish so that the context is guaranteed to be lost | 2283 // flaky, we call finish so that the context is guaranteed to be lost |
| 2284 // synchronously (i.e. before returning). | 2284 // synchronously (i.e. before returning). |
| 2285 sharedContext->finish(); | 2285 sharedContext->finish(); |
| 2286 return true; | 2286 return true; |
| 2287 } | 2287 } |
| 2288 | 2288 |
| 2289 } | 2289 } |
| OLD | NEW |