| 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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) |
| 129 #include "DOMWindowSpeechSynthesis.h" | 129 #include "DOMWindowSpeechSynthesis.h" |
| 130 #include "PlatformSpeechSynthesizerMock.h" | |
| 131 #include "SpeechSynthesis.h" | 130 #include "SpeechSynthesis.h" |
| 131 #include "core/platform/mock/PlatformSpeechSynthesizerMock.h" |
| 132 #endif | 132 #endif |
| 133 | 133 |
| 134 namespace WebCore { | 134 namespace WebCore { |
| 135 | 135 |
| 136 #if ENABLE(PAGE_POPUP) | 136 #if ENABLE(PAGE_POPUP) |
| 137 static MockPagePopupDriver* s_pagePopupDriver = 0; | 137 static MockPagePopupDriver* s_pagePopupDriver = 0; |
| 138 #endif | 138 #endif |
| 139 | 139 |
| 140 using namespace HTMLNames; | 140 using namespace HTMLNames; |
| 141 | 141 |
| (...skipping 1815 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 |