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

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

Issue 13861033: Remove Apple's unused implementation of private browsing from WebCore (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 928 matching lines...) Expand 10 before | Expand all | Expand 10 after
939 void unregisterForPageCacheSuspensionCallbacks(Element*); 939 void unregisterForPageCacheSuspensionCallbacks(Element*);
940 940
941 void documentWillBecomeInactive(); 941 void documentWillBecomeInactive();
942 void documentWillSuspendForPageCache(); 942 void documentWillSuspendForPageCache();
943 void documentDidResumeFromPageCache(); 943 void documentDidResumeFromPageCache();
944 944
945 void registerForMediaVolumeCallbacks(Element*); 945 void registerForMediaVolumeCallbacks(Element*);
946 void unregisterForMediaVolumeCallbacks(Element*); 946 void unregisterForMediaVolumeCallbacks(Element*);
947 void mediaVolumeDidChange(); 947 void mediaVolumeDidChange();
948 948
949 void registerForPrivateBrowsingStateChangedCallbacks(Element*);
950 void unregisterForPrivateBrowsingStateChangedCallbacks(Element*);
951 void storageBlockingStateDidChange(); 949 void storageBlockingStateDidChange();
952 void privateBrowsingStateDidChange();
953 950
954 #if ENABLE(VIDEO_TRACK) 951 #if ENABLE(VIDEO_TRACK)
955 void registerForCaptionPreferencesChangedCallbacks(Element*); 952 void registerForCaptionPreferencesChangedCallbacks(Element*);
956 void unregisterForCaptionPreferencesChangedCallbacks(Element*); 953 void unregisterForCaptionPreferencesChangedCallbacks(Element*);
957 void captionPreferencesChanged(); 954 void captionPreferencesChanged();
958 #endif 955 #endif
959 956
960 void setShouldCreateRenderers(bool); 957 void setShouldCreateRenderers(bool);
961 bool shouldCreateRenderers(); 958 bool shouldCreateRenderers();
962 959
(...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after
1427 bool m_annotatedRegionsDirty; 1424 bool m_annotatedRegionsDirty;
1428 1425
1429 HashMap<String, RefPtr<HTMLCanvasElement> > m_cssCanvasElements; 1426 HashMap<String, RefPtr<HTMLCanvasElement> > m_cssCanvasElements;
1430 1427
1431 bool m_createRenderers; 1428 bool m_createRenderers;
1432 bool m_inPageCache; 1429 bool m_inPageCache;
1433 Vector<IconURL> m_iconURLs; 1430 Vector<IconURL> m_iconURLs;
1434 1431
1435 HashSet<Element*> m_documentSuspensionCallbackElements; 1432 HashSet<Element*> m_documentSuspensionCallbackElements;
1436 HashSet<Element*> m_mediaVolumeCallbackElements; 1433 HashSet<Element*> m_mediaVolumeCallbackElements;
1437 HashSet<Element*> m_privateBrowsingStateChangedElements;
1438 #if ENABLE(VIDEO_TRACK) 1434 #if ENABLE(VIDEO_TRACK)
1439 HashSet<Element*> m_captionPreferencesChangedElements; 1435 HashSet<Element*> m_captionPreferencesChangedElements;
1440 #endif 1436 #endif
1441 1437
1442 HashMap<StringImpl*, Element*, CaseFoldingHash> m_elementsByAccessKey; 1438 HashMap<StringImpl*, Element*, CaseFoldingHash> m_elementsByAccessKey;
1443 bool m_accessKeyMapValid; 1439 bool m_accessKeyMapValid;
1444 1440
1445 OwnPtr<SelectorQueryCache> m_selectorQueryCache; 1441 OwnPtr<SelectorQueryCache> m_selectorQueryCache;
1446 1442
1447 bool m_useSecureKeyboardEntryWhenActive; 1443 bool m_useSecureKeyboardEntryWhenActive;
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
1609 trackForDebugging(); 1605 trackForDebugging();
1610 #endif 1606 #endif
1611 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter); 1607 InspectorCounters::incrementCounter(InspectorCounters::NodeCounter);
1612 } 1608 }
1613 1609
1614 Node* eventTargetNodeForDocument(Document*); 1610 Node* eventTargetNodeForDocument(Document*);
1615 1611
1616 } // namespace WebCore 1612 } // namespace WebCore
1617 1613
1618 #endif // Document_h 1614 #endif // Document_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698