Index: Source/WebCore/html/HTMLLinkElement.h |
=================================================================== |
--- Source/WebCore/html/HTMLLinkElement.h (revision 126674) |
+++ Source/WebCore/html/HTMLLinkElement.h (working copy) |
@@ -105,8 +105,14 @@ |
enum PendingSheetType { None, NonBlocking, Blocking }; |
void addPendingSheet(PendingSheetType); |
- void removePendingSheet(); |
+ enum RemovePendingSheetNotificationType { |
+ RemovePendingSheetNotifyImmediately, |
+ RemovePendingSheetNotifyLater |
+ }; |
+ |
+ void removePendingSheet(RemovePendingSheetNotificationType = RemovePendingSheetNotifyImmediately); |
+ |
#if ENABLE(MICRODATA) |
virtual String itemValueText() const OVERRIDE; |
virtual void setItemValueText(const String&, ExceptionCode&) OVERRIDE; |