Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 422 "The rtcpMuxPolicy option is being considered for " | 422 "The rtcpMuxPolicy option is being considered for " |
| 423 "removal and may be removed no earlier than %s. If you depend on it, " | 423 "removal and may be removed no earlier than %s. If you depend on it, " |
| 424 "please see https://www.chromestatus.com/features/5654810086866944 " | 424 "please see https://www.chromestatus.com/features/5654810086866944 " |
| 425 "for more details.", | 425 "for more details.", |
| 426 milestoneString(M60)); | 426 milestoneString(M60)); |
| 427 | 427 |
| 428 case UseCounter::V8IDBFactory_WebkitGetDatabaseNames_Method: | 428 case UseCounter::V8IDBFactory_WebkitGetDatabaseNames_Method: |
| 429 return willBeRemoved("indexedDB.webkitGetDatabaseNames()", M60, | 429 return willBeRemoved("indexedDB.webkitGetDatabaseNames()", M60, |
| 430 "5725741740195840"); | 430 "5725741740195840"); |
| 431 | 431 |
| 432 case UseCounter::ChildSrcAllowedWorkerThatScriptSrcBlocked: | |
| 433 return replacedWillBeRemoved("The 'child-src' directive", | |
| 434 "the 'script-src' directive for Workers", | |
| 435 M60, "5922594955984896"); | |
|
foolip
2017/06/16 08:00:46
We're now at M61, can this be removed and merged b
| |
| 436 | |
| 432 // Features that aren't deprecated don't have a deprecation message. | 437 // Features that aren't deprecated don't have a deprecation message. |
| 433 default: | 438 default: |
| 434 return String(); | 439 return String(); |
| 435 } | 440 } |
| 436 } | 441 } |
| 437 | 442 |
| 438 } // namespace blink | 443 } // namespace blink |
| OLD | NEW |