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

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

Issue 1713953002: Report errors in RTCPeerConnection legacy functions via the the failure callback instead of excepti… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 9 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 /* 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 852 matching lines...) Expand 10 before | Expand all | Expand 10 after
863 OfflineAudioContextResume = 1033, 863 OfflineAudioContextResume = 1033,
864 AttrCloneNode = 1034, 864 AttrCloneNode = 1034,
865 SVG1DOMPaintServer = 1035, 865 SVG1DOMPaintServer = 1035,
866 SVGSVGElementFragmentSVGView = 1036, 866 SVGSVGElementFragmentSVGView = 1036,
867 SVGSVGElementFragmentSVGViewElement = 1037, 867 SVGSVGElementFragmentSVGViewElement = 1037,
868 PresentationConnectionClose = 1038, 868 PresentationConnectionClose = 1038,
869 SVG1DOMShape = 1039, 869 SVG1DOMShape = 1039,
870 SVG1DOMText = 1040, 870 SVG1DOMText = 1040,
871 RTCPeerConnectionConstructorConstraints = 1041, 871 RTCPeerConnectionConstructorConstraints = 1041,
872 RTCPeerConnectionConstructorCompliant = 1042, 872 RTCPeerConnectionConstructorCompliant = 1042,
873 RTCPeerConnectionCreateOfferLegacyNoFailureCallback = 1043,
874 RTCPeerConnectionCreateOfferLegacyFailureCallback = 1044, 873 RTCPeerConnectionCreateOfferLegacyFailureCallback = 1044,
875 RTCPeerConnectionCreateOfferLegacyConstraints = 1045, 874 RTCPeerConnectionCreateOfferLegacyConstraints = 1045,
876 RTCPeerConnectionCreateOfferLegacyOfferOptions = 1046, 875 RTCPeerConnectionCreateOfferLegacyOfferOptions = 1046,
877 RTCPeerConnectionCreateOfferLegacyCompliant = 1047, 876 RTCPeerConnectionCreateOfferLegacyCompliant = 1047,
878 RTCPeerConnectionCreateAnswerLegacyNoFailureCallback = 1048,
879 RTCPeerConnectionCreateAnswerLegacyFailureCallback = 1049, 877 RTCPeerConnectionCreateAnswerLegacyFailureCallback = 1049,
880 RTCPeerConnectionCreateAnswerLegacyConstraints = 1050, 878 RTCPeerConnectionCreateAnswerLegacyConstraints = 1050,
881 RTCPeerConnectionCreateAnswerLegacyCompliant = 1051, 879 RTCPeerConnectionCreateAnswerLegacyCompliant = 1051,
882 RTCPeerConnectionSetLocalDescriptionLegacyNoSuccessCallback = 1052, 880 RTCPeerConnectionSetLocalDescriptionLegacyNoSuccessCallback = 1052,
883 RTCPeerConnectionSetLocalDescriptionLegacyNoFailureCallback = 1053, 881 RTCPeerConnectionSetLocalDescriptionLegacyNoFailureCallback = 1053,
884 RTCPeerConnectionSetLocalDescriptionLegacyCompliant = 1054, 882 RTCPeerConnectionSetLocalDescriptionLegacyCompliant = 1054,
885 RTCPeerConnectionSetRemoteDescriptionLegacyNoSuccessCallback = 1055, 883 RTCPeerConnectionSetRemoteDescriptionLegacyNoSuccessCallback = 1055,
886 RTCPeerConnectionSetRemoteDescriptionLegacyNoFailureCallback = 1056, 884 RTCPeerConnectionSetRemoteDescriptionLegacyNoFailureCallback = 1056,
887 RTCPeerConnectionSetRemoteDescriptionLegacyCompliant = 1057, 885 RTCPeerConnectionSetRemoteDescriptionLegacyCompliant = 1057,
888 RTCPeerConnectionGetStatsLegacyNonCompliant = 1058, 886 RTCPeerConnectionGetStatsLegacyNonCompliant = 1058,
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
1176 friend class UseCounterTest; 1174 friend class UseCounterTest;
1177 static int m_muteCount; 1175 static int m_muteCount;
1178 1176
1179 CountBits m_countBits; 1177 CountBits m_countBits;
1180 BitVector m_CSSFeatureBits; 1178 BitVector m_CSSFeatureBits;
1181 }; 1179 };
1182 1180
1183 } // namespace blink 1181 } // namespace blink
1184 1182
1185 #endif // UseCounter_h 1183 #endif // UseCounter_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698