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

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

Issue 2266283002: Updating deprecation message for <keygen>. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 4 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/webexposed/element-instance-property-listing-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/FrameHost.h" 10 #include "core/frame/FrameHost.h"
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 case UseCounter::MediaStreamTrackGetSources: 345 case UseCounter::MediaStreamTrackGetSources:
346 return "MediaStreamTrack.getSources is deprecated. See https://www.chrom estatus.com/feature/4765305641369600 for more details."; 346 return "MediaStreamTrack.getSources is deprecated. See https://www.chrom estatus.com/feature/4765305641369600 for more details.";
347 347
348 case UseCounter::V8TouchEvent_InitTouchEvent_Method: 348 case UseCounter::V8TouchEvent_InitTouchEvent_Method:
349 return replacedWillBeRemoved("'TouchEvent.initTouchEvent'", "the TouchEv ent constructor", 54, "5730982598541312"); 349 return replacedWillBeRemoved("'TouchEvent.initTouchEvent'", "the TouchEv ent constructor", 54, "5730982598541312");
350 350
351 case UseCounter::WebAnimationHyphenatedProperty: 351 case UseCounter::WebAnimationHyphenatedProperty:
352 return "Hyphenated property names in Web Animations keyframes are invali d and therefore ignored. Please use camelCase instead."; 352 return "Hyphenated property names in Web Animations keyframes are invali d and therefore ignored. Please use camelCase instead.";
353 353
354 case UseCounter::HTMLKeygenElement: 354 case UseCounter::HTMLKeygenElement:
355 return willBeRemoved("The <keygen> element", 54, "5716060992962560"); 355 return willBeRemoved("The <keygen> element", 56, "5716060992962560");
356 356
357 case UseCounter::WindowPostMessageWithLegacyTargetOriginArgument: 357 case UseCounter::WindowPostMessageWithLegacyTargetOriginArgument:
358 return replacedWillBeRemoved("'window.postMessage(message, transferables , targetOrigin)'", "'window.postMessage(message, targetOrigin, transferables)'", 54, "5719033043222528"); 358 return replacedWillBeRemoved("'window.postMessage(message, transferables , targetOrigin)'", "'window.postMessage(message, targetOrigin, transferables)'", 54, "5719033043222528");
359 359
360 case UseCounter::EncryptedMediaAllSelectedContentTypesMissingCodecs: 360 case UseCounter::EncryptedMediaAllSelectedContentTypesMissingCodecs:
361 return String::format("EME requires that contentType strings accepted by requestMediaKeySystemAccess() include codecs. Non-standard support for contentT ype strings without codecs will be removed in %s. Please specify the desired cod ec(s) as part of the contentType.", milestoneString(54)); 361 return String::format("EME requires that contentType strings accepted by requestMediaKeySystemAccess() include codecs. Non-standard support for contentT ype strings without codecs will be removed in %s. Please specify the desired cod ec(s) as part of the contentType.", milestoneString(54));
362 362
363 case UseCounter::UntrustedEventDefaultHandled: 363 case UseCounter::UntrustedEventDefaultHandled:
364 return String::format("A DOM event generated from JavaScript has trigger ed a default action inside the browser. This behavior is non-standard and will b e removed in %s. See https://www.chromestatus.com/features/5718803933560832 for more details.", milestoneString(53)); 364 return String::format("A DOM event generated from JavaScript has trigger ed a default action inside the browser. This behavior is non-standard and will b e removed in %s. See https://www.chromestatus.com/features/5718803933560832 for more details.", milestoneString(53));
365 365
(...skipping 21 matching lines...) Expand all
387 case UseCounter::V8SVGSVGElement_Viewport_AttributeGetter: 387 case UseCounter::V8SVGSVGElement_Viewport_AttributeGetter:
388 return willBeRemoved("SVGSVGElement.viewport", 55, "5686865248124928"); 388 return willBeRemoved("SVGSVGElement.viewport", 55, "5686865248124928");
389 389
390 // Features that aren't deprecated don't have a deprecation message. 390 // Features that aren't deprecated don't have a deprecation message.
391 default: 391 default:
392 return String(); 392 return String();
393 } 393 }
394 } 394 }
395 395
396 } // namespace blink 396 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/webexposed/element-instance-property-listing-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698