Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 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) 2010 Nokia Corporation and/or its subsidiary(-ies) | 10 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
| (...skipping 1411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1422 } | 1422 } |
| 1423 | 1423 |
| 1424 const OriginAccessEntry& accessEntryFromURL(); | 1424 const OriginAccessEntry& accessEntryFromURL(); |
| 1425 | 1425 |
| 1426 void sendSensitiveInputVisibility(); | 1426 void sendSensitiveInputVisibility(); |
| 1427 void sendSensitiveInputVisibilityInternal(); | 1427 void sendSensitiveInputVisibilityInternal(); |
| 1428 | 1428 |
| 1429 void runExecutionContextTask(std::unique_ptr<ExecutionContextTask>, | 1429 void runExecutionContextTask(std::unique_ptr<ExecutionContextTask>, |
| 1430 bool instrumenting); | 1430 bool instrumenting); |
| 1431 | 1431 |
| 1432 void clearSlotChangeList(); | |
|
kochi
2017/01/16 07:07:42
Forgot to remove this line?
hayato
2017/01/16 08:11:26
Nice catch! Let me remove this before landing this
| |
| 1433 | |
| 1432 DocumentLifecycle m_lifecycle; | 1434 DocumentLifecycle m_lifecycle; |
| 1433 | 1435 |
| 1434 bool m_hasNodesWithPlaceholderStyle; | 1436 bool m_hasNodesWithPlaceholderStyle; |
| 1435 bool m_evaluateMediaQueriesOnStyleRecalc; | 1437 bool m_evaluateMediaQueriesOnStyleRecalc; |
| 1436 | 1438 |
| 1437 // If we do ignore the pending stylesheet count, then we need to add a boolean | 1439 // If we do ignore the pending stylesheet count, then we need to add a boolean |
| 1438 // to track that this happened so that we can do a full repaint when the | 1440 // to track that this happened so that we can do a full repaint when the |
| 1439 // stylesheets do eventually load. | 1441 // stylesheets do eventually load. |
| 1440 PendingSheetLayout m_pendingSheetLayout; | 1442 PendingSheetLayout m_pendingSheetLayout; |
| 1441 | 1443 |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1721 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); | 1723 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); |
| 1722 | 1724 |
| 1723 } // namespace blink | 1725 } // namespace blink |
| 1724 | 1726 |
| 1725 #ifndef NDEBUG | 1727 #ifndef NDEBUG |
| 1726 // Outside the WebCore namespace for ease of invocation from gdb. | 1728 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1727 CORE_EXPORT void showLiveDocumentInstances(); | 1729 CORE_EXPORT void showLiveDocumentInstances(); |
| 1728 #endif | 1730 #endif |
| 1729 | 1731 |
| 1730 #endif // Document_h | 1732 #endif // Document_h |
| OLD | NEW |