Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(231)

Side by Side Diff: Source/WebKit/chromium/src/ChromeClientImpl.cpp

Issue 14670004: Remove scaffolding for WebKit-proprietary fullscreen API (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Workaround trybots Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/WebKit/chromium/src/ChromeClientImpl.h ('k') | Source/core/dom/EventNames.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/WebKit/chromium/src/ChromeClientImpl.h ('k') | Source/core/dom/EventNames.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698