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

Side by Side Diff: Source/core/inspector/ConsoleMessageStorage.cpp

Issue 655213002: Oilpan: fix build after r183735. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "config.h" 5 #include "config.h"
6 #include "core/inspector/ConsoleMessageStorage.h" 6 #include "core/inspector/ConsoleMessageStorage.h"
7 7
8 #include "core/frame/FrameHost.h"
8 #include "core/frame/LocalDOMWindow.h" 9 #include "core/frame/LocalDOMWindow.h"
9 #include "core/inspector/ConsoleMessage.h" 10 #include "core/inspector/ConsoleMessage.h"
10 #include "core/inspector/InspectorConsoleInstrumentation.h" 11 #include "core/inspector/InspectorConsoleInstrumentation.h"
11 12
12 namespace blink { 13 namespace blink {
13 14
14 static const unsigned maxConsoleMessageCount = 1000; 15 static const unsigned maxConsoleMessageCount = 1000;
15 16
16 ConsoleMessageStorage::ConsoleMessageStorage(ExecutionContext* context) 17 ConsoleMessageStorage::ConsoleMessageStorage(ExecutionContext* context)
17 : m_expiredCount(0) 18 : m_expiredCount(0)
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 } 97 }
97 98
98 void ConsoleMessageStorage::trace(Visitor* visitor) 99 void ConsoleMessageStorage::trace(Visitor* visitor)
99 { 100 {
100 visitor->trace(m_messages); 101 visitor->trace(m_messages);
101 visitor->trace(m_context); 102 visitor->trace(m_context);
102 visitor->trace(m_frameHost); 103 visitor->trace(m_frameHost);
103 } 104 }
104 105
105 } // namespace blink 106 } // namespace blink
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698