| 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 |
| 114 #include "FilterOperation.h" | |
| 115 #include "FilterOperations.h" | |
| 116 #include "GraphicsLayerChromium.h" | |
| 117 #include "RenderLayerBacking.h" | 114 #include "RenderLayerBacking.h" |
| 118 #include "core/platform/graphics/GraphicsLayer.h" | 115 #include "core/platform/graphics/GraphicsLayer.h" |
| 116 #include "core/platform/graphics/chromium/GraphicsLayerChromium.h" |
| 117 #include "core/platform/graphics/filters/FilterOperation.h" |
| 118 #include "core/platform/graphics/filters/FilterOperations.h" |
| 119 | 119 |
| 120 #if ENABLE(ENCRYPTED_MEDIA_V2) | 120 #if ENABLE(ENCRYPTED_MEDIA_V2) |
| 121 #include "CDM.h" | 121 #include "CDM.h" |
| 122 #include "MockCDM.h" | 122 #include "MockCDM.h" |
| 123 #endif | 123 #endif |
| 124 | 124 |
| 125 #include "CaptionUserPreferences.h" | 125 #include "CaptionUserPreferences.h" |
| 126 #include "PageGroup.h" | 126 #include "PageGroup.h" |
| 127 | 127 |
| 128 #if ENABLE(SPEECH_SYNTHESIS) | 128 #if ENABLE(SPEECH_SYNTHESIS) |
| (...skipping 1828 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 |