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

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

Issue 2706033004: Don't throw when getting selection(Direction|Start|End) on input (Closed)
Patch Set: Refine test Created 3 years, 10 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 1151 matching lines...) Expand 10 before | Expand all | Expand 10 after
1162 SVGViewElement = 1500, 1162 SVGViewElement = 1500,
1163 WebShareShare = 1501, 1163 WebShareShare = 1501,
1164 AuxclickAddListenerCount = 1502, 1164 AuxclickAddListenerCount = 1502,
1165 HTMLCanvasElement = 1503, 1165 HTMLCanvasElement = 1503,
1166 SVGSMILAnimationElementTiming = 1504, 1166 SVGSMILAnimationElementTiming = 1504,
1167 SVGSMILBeginEndAnimationElement = 1505, 1167 SVGSMILBeginEndAnimationElement = 1505,
1168 SVGSMILPausing = 1506, 1168 SVGSMILPausing = 1506,
1169 SVGSMILCurrentTime = 1507, 1169 SVGSMILCurrentTime = 1507,
1170 HTMLBodyElementOnSelectionChangeAttribute = 1508, 1170 HTMLBodyElementOnSelectionChangeAttribute = 1508,
1171 ForeignFetchInterception = 1509, 1171 ForeignFetchInterception = 1509,
1172 InputSelectionGettersThrow = 1517,
1173 UsbGetDevices = 1519, 1172 UsbGetDevices = 1519,
1174 UsbRequestDevice = 1520, 1173 UsbRequestDevice = 1520,
1175 UsbDeviceOpen = 1521, 1174 UsbDeviceOpen = 1521,
1176 UsbDeviceClose = 1522, 1175 UsbDeviceClose = 1522,
1177 UsbDeviceSelectConfiguration = 1523, 1176 UsbDeviceSelectConfiguration = 1523,
1178 UsbDeviceClaimInterface = 1524, 1177 UsbDeviceClaimInterface = 1524,
1179 UsbDeviceReleaseInterface = 1525, 1178 UsbDeviceReleaseInterface = 1525,
1180 UsbDeviceSelectAlternateInterface = 1526, 1179 UsbDeviceSelectAlternateInterface = 1526,
1181 UsbDeviceControlTransferIn = 1527, 1180 UsbDeviceControlTransferIn = 1527,
1182 UsbDeviceControlTransferOut = 1528, 1181 UsbDeviceControlTransferOut = 1528,
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after
1576 // Tracks what features/properties need to be reported to the legacy 1575 // Tracks what features/properties need to be reported to the legacy
1577 // histograms. 1576 // histograms.
1578 BitVector m_featureBits; 1577 BitVector m_featureBits;
1579 BitVector m_CSSBits; 1578 BitVector m_CSSBits;
1580 } m_legacyCounter; 1579 } m_legacyCounter;
1581 }; 1580 };
1582 1581
1583 } // namespace blink 1582 } // namespace blink
1584 1583
1585 #endif // UseCounter_h 1584 #endif // UseCounter_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698