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

Side by Side Diff: third_party/WebKit/Source/core/frame/Deprecation.cpp

Issue 2827583003: Move cast overlay CSS selector deprecation deadline to 61. (Closed)
Patch Set: update layout test Created 3 years, 8 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
« no previous file with comments | « third_party/WebKit/LayoutTests/media/deprecated-css-selectors-expected.txt ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "core/frame/Deprecation.h" 5 #include "core/frame/Deprecation.h"
6 6
7 #include "core/dom/Document.h" 7 #include "core/dom/Document.h"
8 #include "core/dom/ExecutionContext.h" 8 #include "core/dom/ExecutionContext.h"
9 #include "core/frame/FrameConsole.h" 9 #include "core/frame/FrameConsole.h"
10 #include "core/frame/LocalFrame.h" 10 #include "core/frame/LocalFrame.h"
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 387
388 case UseCounter:: 388 case UseCounter::
389 kServiceWorkerRespondToNavigationRequestWithRedirectedResponse: 389 kServiceWorkerRespondToNavigationRequestWithRedirectedResponse:
390 return String::Format( 390 return String::Format(
391 "The service worker responded to the navigation request with a " 391 "The service worker responded to the navigation request with a "
392 "redirected response. This will result in an error in %s.", 392 "redirected response. This will result in an error in %s.",
393 milestoneString(M59)); 393 milestoneString(M59));
394 394
395 case UseCounter::kCSSSelectorInternalMediaControlsOverlayCastButton: 395 case UseCounter::kCSSSelectorInternalMediaControlsOverlayCastButton:
396 return willBeRemoved( 396 return willBeRemoved(
397 "-internal-media-controls-overlay-cast-button selector", M59, 397 "-internal-media-controls-overlay-cast-button selector", M61,
398 "5714245488476160"); 398 "5714245488476160");
399 399
400 case UseCounter::kCSSZoomReset: 400 case UseCounter::kCSSZoomReset:
401 return willBeRemoved("\"zoom: reset\"", M59, "4997605029314560"); 401 return willBeRemoved("\"zoom: reset\"", M59, "4997605029314560");
402 402
403 case UseCounter::kCSSZoomDocument: 403 case UseCounter::kCSSZoomDocument:
404 return willBeRemoved("\"zoom: document\"", M59, "4997605029314560"); 404 return willBeRemoved("\"zoom: document\"", M59, "4997605029314560");
405 405
406 case UseCounter::kSelectionAddRangeIntersect: 406 case UseCounter::kSelectionAddRangeIntersect:
407 return "The behavior that Selection.addRange() merges existing Range and " 407 return "The behavior that Selection.addRange() merges existing Range and "
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
448 return willBeRemoved("RTCPeerConnection.getStreamById()", M62, 448 return willBeRemoved("RTCPeerConnection.getStreamById()", M62,
449 "5751819573657600"); 449 "5751819573657600");
450 450
451 // Features that aren't deprecated don't have a deprecation message. 451 // Features that aren't deprecated don't have a deprecation message.
452 default: 452 default:
453 return String(); 453 return String();
454 } 454 }
455 } 455 }
456 456
457 } // namespace blink 457 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/media/deprecated-css-selectors-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698