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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 #include "core/dom/shadow/ElementShadow.h" | 65 #include "core/dom/shadow/ElementShadow.h" |
66 #include "core/dom/shadow/SelectRuleFeatureSet.h" | 66 #include "core/dom/shadow/SelectRuleFeatureSet.h" |
67 #include "core/dom/shadow/ShadowRoot.h" | 67 #include "core/dom/shadow/ShadowRoot.h" |
68 #include "core/editing/Editor.h" | 68 #include "core/editing/Editor.h" |
69 #include "core/editing/SpellCheckRequester.h" | 69 #include "core/editing/SpellCheckRequester.h" |
70 #include "core/editing/TextIterator.h" | 70 #include "core/editing/TextIterator.h" |
71 #include "core/fetch/MemoryCache.h" | 71 #include "core/fetch/MemoryCache.h" |
72 #include "core/fetch/ResourceFetcher.h" | 72 #include "core/fetch/ResourceFetcher.h" |
73 #include "core/history/BackForwardController.h" | 73 #include "core/history/BackForwardController.h" |
74 #include "core/history/HistoryItem.h" | 74 #include "core/history/HistoryItem.h" |
75 #include "core/html/FormController.h" | |
76 #include "core/html/HTMLInputElement.h" | 75 #include "core/html/HTMLInputElement.h" |
77 #include "core/html/HTMLMediaElement.h" | 76 #include "core/html/HTMLMediaElement.h" |
78 #include "core/html/HTMLSelectElement.h" | 77 #include "core/html/HTMLSelectElement.h" |
79 #include "core/html/HTMLTextAreaElement.h" | 78 #include "core/html/HTMLTextAreaElement.h" |
| 79 #include "core/html/forms/FormController.h" |
80 #include "core/html/shadow/HTMLContentElement.h" | 80 #include "core/html/shadow/HTMLContentElement.h" |
81 #include "core/inspector/InspectorClient.h" | 81 #include "core/inspector/InspectorClient.h" |
82 #include "core/inspector/InspectorConsoleAgent.h" | 82 #include "core/inspector/InspectorConsoleAgent.h" |
83 #include "core/inspector/InspectorController.h" | 83 #include "core/inspector/InspectorController.h" |
84 #include "core/inspector/InspectorCounters.h" | 84 #include "core/inspector/InspectorCounters.h" |
85 #include "core/inspector/InspectorFrontendChannel.h" | 85 #include "core/inspector/InspectorFrontendChannel.h" |
86 #include "core/inspector/InspectorInstrumentation.h" | 86 #include "core/inspector/InspectorInstrumentation.h" |
87 #include "core/inspector/InspectorOverlay.h" | 87 #include "core/inspector/InspectorOverlay.h" |
88 #include "core/inspector/InstrumentingAgents.h" | 88 #include "core/inspector/InstrumentingAgents.h" |
89 #include "core/loader/FrameLoader.h" | 89 #include "core/loader/FrameLoader.h" |
(...skipping 2162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2252 return false; | 2252 return false; |
2253 sharedContext->extensions()->loseContextCHROMIUM(Extensions3D::GUILTY_CONTEX
T_RESET_ARB, Extensions3D::INNOCENT_CONTEXT_RESET_ARB); | 2253 sharedContext->extensions()->loseContextCHROMIUM(Extensions3D::GUILTY_CONTEX
T_RESET_ARB, Extensions3D::INNOCENT_CONTEXT_RESET_ARB); |
2254 // To prevent tests that call loseSharedGraphicsContext3D from being | 2254 // To prevent tests that call loseSharedGraphicsContext3D from being |
2255 // flaky, we call finish so that the context is guaranteed to be lost | 2255 // flaky, we call finish so that the context is guaranteed to be lost |
2256 // synchronously (i.e. before returning). | 2256 // synchronously (i.e. before returning). |
2257 sharedContext->finish(); | 2257 sharedContext->finish(); |
2258 return true; | 2258 return true; |
2259 } | 2259 } |
2260 | 2260 |
2261 } | 2261 } |
OLD | NEW |