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 18 matching lines...) Expand all Loading... |
29 | 29 |
30 #include "AnimationController.h" | 30 #include "AnimationController.h" |
31 #include "BackForwardController.h" | 31 #include "BackForwardController.h" |
32 #include "CachedResourceLoader.h" | 32 #include "CachedResourceLoader.h" |
33 #include "Chrome.h" | 33 #include "Chrome.h" |
34 #include "ChromeClient.h" | 34 #include "ChromeClient.h" |
35 #include "ClientRect.h" | 35 #include "ClientRect.h" |
36 #include "ClientRectList.h" | 36 #include "ClientRectList.h" |
37 #include "ComposedShadowTreeWalker.h" | 37 #include "ComposedShadowTreeWalker.h" |
38 #include "ContentDistributor.h" | 38 #include "ContentDistributor.h" |
39 #include "Cursor.h" | |
40 #include "DOMPoint.h" | 39 #include "DOMPoint.h" |
41 #include "DOMStringList.h" | 40 #include "DOMStringList.h" |
42 #include "DOMWindow.h" | 41 #include "DOMWindow.h" |
43 #include "Document.h" | 42 #include "Document.h" |
44 #include "DocumentMarker.h" | 43 #include "DocumentMarker.h" |
45 #include "DocumentMarkerController.h" | 44 #include "DocumentMarkerController.h" |
46 #include "Editor.h" | 45 #include "Editor.h" |
47 #include "Element.h" | 46 #include "Element.h" |
48 #include "ElementShadow.h" | 47 #include "ElementShadow.h" |
49 #include "EventHandler.h" | 48 #include "EventHandler.h" |
(...skipping 12 matching lines...) Expand all Loading... |
62 #include "InspectorClient.h" | 61 #include "InspectorClient.h" |
63 #include "InspectorConsoleAgent.h" | 62 #include "InspectorConsoleAgent.h" |
64 #include "InspectorController.h" | 63 #include "InspectorController.h" |
65 #include "InspectorCounters.h" | 64 #include "InspectorCounters.h" |
66 #include "InspectorFrontendChannel.h" | 65 #include "InspectorFrontendChannel.h" |
67 #include "InspectorFrontendClientLocal.h" | 66 #include "InspectorFrontendClientLocal.h" |
68 #include "InspectorInstrumentation.h" | 67 #include "InspectorInstrumentation.h" |
69 #include "InspectorOverlay.h" | 68 #include "InspectorOverlay.h" |
70 #include "InstrumentingAgents.h" | 69 #include "InstrumentingAgents.h" |
71 #include "InternalSettings.h" | 70 #include "InternalSettings.h" |
72 #include "Language.h" | |
73 #include "MallocStatistics.h" | 71 #include "MallocStatistics.h" |
74 #include "MemoryCache.h" | 72 #include "MemoryCache.h" |
75 #include "MockPagePopupDriver.h" | 73 #include "MockPagePopupDriver.h" |
76 #include "NodeRenderingContext.h" | 74 #include "NodeRenderingContext.h" |
77 #include "Page.h" | 75 #include "Page.h" |
78 #include "PrintContext.h" | 76 #include "PrintContext.h" |
79 #include "PseudoElement.h" | 77 #include "PseudoElement.h" |
80 #include "Range.h" | 78 #include "Range.h" |
81 #include "RenderMenuList.h" | 79 #include "RenderMenuList.h" |
82 #include "RenderObject.h" | 80 #include "RenderObject.h" |
83 #include "RenderTreeAsText.h" | 81 #include "RenderTreeAsText.h" |
84 #include "RuntimeEnabledFeatures.h" | 82 #include "RuntimeEnabledFeatures.h" |
85 #include "SchemeRegistry.h" | |
86 #include "ScrollingCoordinator.h" | 83 #include "ScrollingCoordinator.h" |
87 #include "SelectRuleFeatureSet.h" | 84 #include "SelectRuleFeatureSet.h" |
88 #include "SerializedScriptValue.h" | 85 #include "SerializedScriptValue.h" |
89 #include "Settings.h" | 86 #include "Settings.h" |
90 #include "ShadowRoot.h" | 87 #include "ShadowRoot.h" |
91 #include "SpellChecker.h" | 88 #include "SpellChecker.h" |
92 #include "StyleSheetContents.h" | 89 #include "StyleSheetContents.h" |
93 #include "TextIterator.h" | 90 #include "TextIterator.h" |
94 #include "TreeScope.h" | 91 #include "TreeScope.h" |
95 #include "TypeConversions.h" | 92 #include "TypeConversions.h" |
96 #include "ViewportArguments.h" | 93 #include "ViewportArguments.h" |
97 #include "WorkerThread.h" | 94 #include "WorkerThread.h" |
| 95 #include "core/platform/Cursor.h" |
| 96 #include "core/platform/Language.h" |
| 97 #include "core/platform/SchemeRegistry.h" |
98 #include "core/platform/graphics/IntRect.h" | 98 #include "core/platform/graphics/IntRect.h" |
99 #include <wtf/dtoa.h> | 99 #include <wtf/dtoa.h> |
100 #include <wtf/text/StringBuffer.h> | 100 #include <wtf/text/StringBuffer.h> |
101 | 101 |
102 #if ENABLE(INPUT_TYPE_COLOR) | 102 #if ENABLE(INPUT_TYPE_COLOR) |
103 #include "ColorChooser.h" | 103 #include "core/platform/ColorChooser.h" |
104 #endif | 104 #endif |
105 | 105 |
106 #if ENABLE(BATTERY_STATUS) | 106 #if ENABLE(BATTERY_STATUS) |
107 #include "BatteryController.h" | 107 #include "BatteryController.h" |
108 #endif | 108 #endif |
109 | 109 |
110 #if ENABLE(PAGE_POPUP) | 110 #if ENABLE(PAGE_POPUP) |
111 #include "PagePopupController.h" | 111 #include "PagePopupController.h" |
112 #endif | 112 #endif |
113 | 113 |
(...skipping 1843 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1957 | 1957 |
1958 RenderObject* renderer = select->renderer(); | 1958 RenderObject* renderer = select->renderer(); |
1959 if (!renderer->isMenuList()) | 1959 if (!renderer->isMenuList()) |
1960 return false; | 1960 return false; |
1961 | 1961 |
1962 RenderMenuList* menuList = toRenderMenuList(renderer); | 1962 RenderMenuList* menuList = toRenderMenuList(renderer); |
1963 return menuList->popupIsVisible(); | 1963 return menuList->popupIsVisible(); |
1964 } | 1964 } |
1965 | 1965 |
1966 } | 1966 } |
OLD | NEW |