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

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

Issue 2927123005: Deprecate step timing with position 'middle' (Closed)
Patch Set: Rebase Created 3 years, 6 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
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 422 matching lines...) Expand 10 before | Expand all | Expand 10 after
433 "\"mastercard\", \"mir\", \"unionpay\", \"visa\") as payment method", 433 "\"mastercard\", \"mir\", \"unionpay\", \"visa\") as payment method",
434 "payment method name \"basic-card\" with issuer network in the " 434 "payment method name \"basic-card\" with issuer network in the "
435 "\"supportedNetworks\" field", 435 "\"supportedNetworks\" field",
436 M64, "5725727580225536"); 436 M64, "5725727580225536");
437 case WebFeature::kCredentialManagerRequireUserMediation: 437 case WebFeature::kCredentialManagerRequireUserMediation:
438 return replacedWillBeRemoved( 438 return replacedWillBeRemoved(
439 "The CredentialsContainer.requireUserMediation method", 439 "The CredentialsContainer.requireUserMediation method",
440 "the CredentialsContainer.preventSilentAccess method", M62, 440 "the CredentialsContainer.preventSilentAccess method", M62,
441 "4781762488041472"); 441 "4781762488041472");
442 442
443 case WebFeature::kDeprecatedTimingFunctionStepMiddle:
444 return replacedWillBeRemoved(
445 "The step timing function with step position 'middle'",
446 "the frames timing function", M62, "5189363944128512");
447
443 // Features that aren't deprecated don't have a deprecation message. 448 // Features that aren't deprecated don't have a deprecation message.
444 default: 449 default:
445 return String(); 450 return String();
446 } 451 }
447 } 452 }
448 453
449 } // namespace blink 454 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/resolver/CSSToStyleMap.cpp ('k') | third_party/WebKit/public/platform/WebFeature.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698