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

Side by Side Diff: third_party/WebKit/Source/core/dom/Document.cpp

Issue 2408333004: Move persistent gesture state to Document, add DocumentUserGestureToken (Closed)
Patch Set: Re-add dropped null check Created 4 years, 1 month 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) 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, 2011, 2012 Apple Inc. All 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All
7 * rights reserved. 7 * rights reserved.
8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved.
9 * (http://www.torchmobile.com/) 9 * (http://www.torchmobile.com/)
10 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. 10 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved.
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after
450 &Document::updateFocusAppearanceTimerFired), 450 &Document::updateFocusAppearanceTimerFired),
451 m_cssTarget(nullptr), 451 m_cssTarget(nullptr),
452 m_loadEventProgress(LoadEventNotRun), 452 m_loadEventProgress(LoadEventNotRun),
453 m_startTime(currentTime()), 453 m_startTime(currentTime()),
454 m_scriptRunner(ScriptRunner::create(this)), 454 m_scriptRunner(ScriptRunner::create(this)),
455 m_xmlVersion("1.0"), 455 m_xmlVersion("1.0"),
456 m_xmlStandalone(StandaloneUnspecified), 456 m_xmlStandalone(StandaloneUnspecified),
457 m_hasXMLDeclaration(0), 457 m_hasXMLDeclaration(0),
458 m_designMode(false), 458 m_designMode(false),
459 m_isRunningExecCommand(false), 459 m_isRunningExecCommand(false),
460 m_hasReceivedUserGesture(false),
460 m_hasAnnotatedRegions(false), 461 m_hasAnnotatedRegions(false),
461 m_annotatedRegionsDirty(false), 462 m_annotatedRegionsDirty(false),
462 m_useSecureKeyboardEntryWhenActive(false), 463 m_useSecureKeyboardEntryWhenActive(false),
463 m_documentClasses(documentClasses), 464 m_documentClasses(documentClasses),
464 m_isViewSource(false), 465 m_isViewSource(false),
465 m_sawElementsInKnownNamespaces(false), 466 m_sawElementsInKnownNamespaces(false),
466 m_isSrcdocDocument(false), 467 m_isSrcdocDocument(false),
467 m_isMobileDocument(false), 468 m_isMobileDocument(false),
468 m_layoutView(0), 469 m_layoutView(0),
469 m_contextDocument(initializer.contextDocument()), 470 m_contextDocument(initializer.contextDocument()),
(...skipping 5923 matching lines...) Expand 10 before | Expand all | Expand 10 after
6393 } 6394 }
6394 6395
6395 void showLiveDocumentInstances() { 6396 void showLiveDocumentInstances() {
6396 WeakDocumentSet& set = liveDocumentSet(); 6397 WeakDocumentSet& set = liveDocumentSet();
6397 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); 6398 fprintf(stderr, "There are %u documents currently alive:\n", set.size());
6398 for (Document* document : set) 6399 for (Document* document : set)
6399 fprintf(stderr, "- Document %p URL: %s\n", document, 6400 fprintf(stderr, "- Document %p URL: %s\n", document,
6400 document->url().getString().utf8().data()); 6401 document->url().getString().utf8().data());
6401 } 6402 }
6402 #endif 6403 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/Document.h ('k') | third_party/WebKit/Source/core/dom/DocumentUserGestureToken.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698