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

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

Issue 1411843003: Update XHR spec references in tests to HTTPS (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Rebase on ToT Created 5 years, 2 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/virtual/gpu/fast/canvas/webgl/uniform-location-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 /* 1 /*
2 * Copyright (C) 2012 Google, Inc. All rights reserved. 2 * Copyright (C) 2012 Google, Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 815 matching lines...) Expand 10 before | Expand all | Expand 10 after
826 case ConsoleTimeline: 826 case ConsoleTimeline:
827 return replacedBy("console.timeline", "console.time"); 827 return replacedBy("console.timeline", "console.time");
828 828
829 case ConsoleTimelineEnd: 829 case ConsoleTimelineEnd:
830 return replacedBy("console.timelineEnd", "console.timeEnd"); 830 return replacedBy("console.timelineEnd", "console.timeEnd");
831 831
832 case CanvasRenderingContext2DCompositeOperationDarker: 832 case CanvasRenderingContext2DCompositeOperationDarker:
833 return replacedBy("darker", "darken"); 833 return replacedBy("darker", "darken");
834 834
835 case XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload: 835 case XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload:
836 return "Synchronous XMLHttpRequest on the main thread is deprecated beca use of its detrimental effects to the end user's experience. For more help, chec k http://xhr.spec.whatwg.org/."; 836 return "Synchronous XMLHttpRequest on the main thread is deprecated beca use of its detrimental effects to the end user's experience. For more help, chec k https://xhr.spec.whatwg.org/.";
837 837
838 case GetMatchedCSSRules: 838 case GetMatchedCSSRules:
839 return "'getMatchedCSSRules()' is deprecated. For more help, check https ://code.google.com/p/chromium/issues/detail?id=437569#c2"; 839 return "'getMatchedCSSRules()' is deprecated. For more help, check https ://code.google.com/p/chromium/issues/detail?id=437569#c2";
840 840
841 case PrefixedImageSmoothingEnabled: 841 case PrefixedImageSmoothingEnabled:
842 return replacedBy("CanvasRenderingContext2D.webkitImageSmoothingEnabled" , "CanvasRenderingContext2D.imageSmoothingEnabled"); 842 return replacedBy("CanvasRenderingContext2D.webkitImageSmoothingEnabled" , "CanvasRenderingContext2D.imageSmoothingEnabled");
843 843
844 case AudioListenerDopplerFactor: 844 case AudioListenerDopplerFactor:
845 return "dopplerFactor is deprecated and will be removed in M45 when all doppler effects are removed"; 845 return "dopplerFactor is deprecated and will be removed in M45 when all doppler effects are removed";
846 846
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
983 UseCounter* UseCounter::getFrom(const StyleSheetContents* sheetContents) 983 UseCounter* UseCounter::getFrom(const StyleSheetContents* sheetContents)
984 { 984 {
985 // FIXME: We may want to handle stylesheets that have multiple owners 985 // FIXME: We may want to handle stylesheets that have multiple owners
986 // http://crbug.com/242125 986 // http://crbug.com/242125
987 if (sheetContents && sheetContents->hasSingleOwnerNode()) 987 if (sheetContents && sheetContents->hasSingleOwnerNode())
988 return getFrom(sheetContents->singleOwnerDocument()); 988 return getFrom(sheetContents->singleOwnerDocument());
989 return 0; 989 return 0;
990 } 990 }
991 991
992 } // namespace blink 992 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/virtual/gpu/fast/canvas/webgl/uniform-location-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698