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

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

Issue 2818173003: Indexed DB: Remove nonstandard IDBFactory.webkitGetDatabaseNames() (Closed)
Patch Set: Remove content_browsertest for wGDN Created 3 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
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 360 matching lines...) Expand 10 before | Expand all | Expand 10 after
371 "details."; 371 "details.";
372 372
373 case UseCounter::kRtcpMuxPolicyNegotiate: 373 case UseCounter::kRtcpMuxPolicyNegotiate:
374 return String::Format( 374 return String::Format(
375 "The rtcpMuxPolicy option is being considered for " 375 "The rtcpMuxPolicy option is being considered for "
376 "removal and may be removed no earlier than %s. If you depend on it, " 376 "removal and may be removed no earlier than %s. If you depend on it, "
377 "please see https://www.chromestatus.com/features/5654810086866944 " 377 "please see https://www.chromestatus.com/features/5654810086866944 "
378 "for more details.", 378 "for more details.",
379 milestoneString(M62)); 379 milestoneString(M62));
380 380
381 case UseCounter::kV8IDBFactory_WebkitGetDatabaseNames_Method:
382 return willBeRemoved("indexedDB.webkitGetDatabaseNames()", M60,
383 "5725741740195840");
384
385 case UseCounter::kVibrateWithoutUserGesture: 381 case UseCounter::kVibrateWithoutUserGesture:
386 return willBeRemoved( 382 return willBeRemoved(
387 "A call to navigator.vibrate without user tap on the frame or any " 383 "A call to navigator.vibrate without user tap on the frame or any "
388 "embedded frame", 384 "embedded frame",
389 M60, "5644273861001216"); 385 M60, "5644273861001216");
390 386
391 case UseCounter::kChildSrcAllowedWorkerThatScriptSrcBlocked: 387 case UseCounter::kChildSrcAllowedWorkerThatScriptSrcBlocked:
392 return replacedWillBeRemoved("The 'child-src' directive", 388 return replacedWillBeRemoved("The 'child-src' directive",
393 "the 'script-src' directive for Workers", 389 "the 'script-src' directive for Workers",
394 M60, "5922594955984896"); 390 M60, "5922594955984896");
(...skipping 16 matching lines...) Expand all
411 return willBeRemoved("SVGPathElement.getPathSegAtLength", M62, 407 return willBeRemoved("SVGPathElement.getPathSegAtLength", M62,
412 "5638783282184192"); 408 "5638783282184192");
413 409
414 // Features that aren't deprecated don't have a deprecation message. 410 // Features that aren't deprecated don't have a deprecation message.
415 default: 411 default:
416 return String(); 412 return String();
417 } 413 }
418 } 414 }
419 415
420 } // namespace blink 416 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698