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

Side by Side Diff: Source/WebCore/dom/Document.h

Issue 14089003: Remove storageBlockingPolicy (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r ights reserved.
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
9 * Copyright (C) 2011 Google Inc. All rights reserved. 9 * Copyright (C) 2011 Google Inc. All rights reserved.
10 * 10 *
(...skipping 924 matching lines...) Expand 10 before | Expand all | Expand 10 after
935 void unregisterForPageCacheSuspensionCallbacks(Element*); 935 void unregisterForPageCacheSuspensionCallbacks(Element*);
936 936
937 void documentWillBecomeInactive(); 937 void documentWillBecomeInactive();
938 void documentWillSuspendForPageCache(); 938 void documentWillSuspendForPageCache();
939 void documentDidResumeFromPageCache(); 939 void documentDidResumeFromPageCache();
940 940
941 void registerForMediaVolumeCallbacks(Element*); 941 void registerForMediaVolumeCallbacks(Element*);
942 void unregisterForMediaVolumeCallbacks(Element*); 942 void unregisterForMediaVolumeCallbacks(Element*);
943 void mediaVolumeDidChange(); 943 void mediaVolumeDidChange();
944 944
945 void storageBlockingStateDidChange();
946
947 #if ENABLE(VIDEO_TRACK) 945 #if ENABLE(VIDEO_TRACK)
948 void registerForCaptionPreferencesChangedCallbacks(Element*); 946 void registerForCaptionPreferencesChangedCallbacks(Element*);
949 void unregisterForCaptionPreferencesChangedCallbacks(Element*); 947 void unregisterForCaptionPreferencesChangedCallbacks(Element*);
950 void captionPreferencesChanged(); 948 void captionPreferencesChanged();
951 #endif 949 #endif
952 950
953 void setShouldCreateRenderers(bool); 951 void setShouldCreateRenderers(bool);
954 bool shouldCreateRenderers(); 952 bool shouldCreateRenderers();
955 953
956 void setDecoder(PassRefPtr<TextResourceDecoder>); 954 void setDecoder(PassRefPtr<TextResourceDecoder>);
(...skipping 642 matching lines...) Expand 10 before | Expand all | Expand 10 after
1599 trackForDebugging(); 1597 trackForDebugging();
1600 #endif 1598 #endif
1601 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter); 1599 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter);
1602 } 1600 }
1603 1601
1604 Node* eventTargetNodeForDocument(Document*); 1602 Node* eventTargetNodeForDocument(Document*);
1605 1603
1606 } // namespace WebCore 1604 } // namespace WebCore
1607 1605
1608 #endif // Document_h 1606 #endif // Document_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698