| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). | 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
| 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 are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * 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 941 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 952 if (settings->acceleratedCompositingForAnimationEnabled()) | 952 if (settings->acceleratedCompositingForAnimationEnabled()) |
| 953 flags |= AnimationTrigger; | 953 flags |= AnimationTrigger; |
| 954 if (settings->acceleratedCompositingForCanvasEnabled()) | 954 if (settings->acceleratedCompositingForCanvasEnabled()) |
| 955 flags |= CanvasTrigger; | 955 flags |= CanvasTrigger; |
| 956 if (settings->acceleratedCompositingForScrollableFramesEnabled()) | 956 if (settings->acceleratedCompositingForScrollableFramesEnabled()) |
| 957 flags |= ScrollableInnerFrameTrigger; | 957 flags |= ScrollableInnerFrameTrigger; |
| 958 | 958 |
| 959 return flags; | 959 return flags; |
| 960 } | 960 } |
| 961 | 961 |
| 962 void ChromeClientImpl::enterFullscreenForNode(Node* node) | |
| 963 { | |
| 964 ASSERT_NOT_REACHED(); | |
| 965 } | |
| 966 | |
| 967 void ChromeClientImpl::exitFullscreenForNode(Node* node) | |
| 968 { | |
| 969 ASSERT_NOT_REACHED(); | |
| 970 } | |
| 971 | |
| 972 void ChromeClientImpl::enterFullScreenForElement(Element* element) | 962 void ChromeClientImpl::enterFullScreenForElement(Element* element) |
| 973 { | 963 { |
| 974 m_webView->enterFullScreenForElement(element); | 964 m_webView->enterFullScreenForElement(element); |
| 975 } | 965 } |
| 976 | 966 |
| 977 void ChromeClientImpl::exitFullScreenForElement(Element* element) | 967 void ChromeClientImpl::exitFullScreenForElement(Element* element) |
| 978 { | 968 { |
| 979 m_webView->exitFullScreenForElement(element); | 969 m_webView->exitFullScreenForElement(element); |
| 980 } | 970 } |
| 981 | 971 |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1132 { | 1122 { |
| 1133 } | 1123 } |
| 1134 | 1124 |
| 1135 void NavigatorContentUtilsClientImpl::registerProtocolHandler(const String& sche
me, const String& baseURL, const String& url, const String& title) | 1125 void NavigatorContentUtilsClientImpl::registerProtocolHandler(const String& sche
me, const String& baseURL, const String& url, const String& title) |
| 1136 { | 1126 { |
| 1137 m_webView->client()->registerProtocolHandler(scheme, baseURL, url, title); | 1127 m_webView->client()->registerProtocolHandler(scheme, baseURL, url, title); |
| 1138 } | 1128 } |
| 1139 #endif | 1129 #endif |
| 1140 | 1130 |
| 1141 } // namespace WebKit | 1131 } // namespace WebKit |
| OLD | NEW |