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

Side by Side Diff: Source/core/inspector/ConsoleMessage.h

Issue 488543002: Oilpan: fix build after r180544. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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 | « Source/core/frame/FrameConsole.cpp ('k') | Source/core/inspector/ConsoleMessage.cpp » ('j') | 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 #ifndef ConsoleMessage_h 5 #ifndef ConsoleMessage_h
6 #define ConsoleMessage_h 6 #define ConsoleMessage_h
7 7
8 #include "bindings/core/v8/ScriptState.h" 8 #include "bindings/core/v8/ScriptState.h"
9 #include "core/frame/ConsoleTypes.h" 9 #include "core/frame/ConsoleTypes.h"
10 #include "core/inspector/ConsoleAPITypes.h" 10 #include "core/inspector/ConsoleAPITypes.h"
(...skipping 22 matching lines...) Expand all
33 MessageType type() const; 33 MessageType type() const;
34 void setType(MessageType); 34 void setType(MessageType);
35 const String& url() const; 35 const String& url() const;
36 void setURL(const String&); 36 void setURL(const String&);
37 unsigned lineNumber() const; 37 unsigned lineNumber() const;
38 void setLineNumber(unsigned); 38 void setLineNumber(unsigned);
39 PassRefPtrWillBeRawPtr<ScriptCallStack> callStack() const; 39 PassRefPtrWillBeRawPtr<ScriptCallStack> callStack() const;
40 void setCallStack(PassRefPtrWillBeRawPtr<ScriptCallStack>); 40 void setCallStack(PassRefPtrWillBeRawPtr<ScriptCallStack>);
41 ScriptState* scriptState() const; 41 ScriptState* scriptState() const;
42 void setScriptState(ScriptState*); 42 void setScriptState(ScriptState*);
43 PassRefPtr<ScriptArguments> scriptArguments() const; 43 PassRefPtrWillBeRawPtr<ScriptArguments> scriptArguments() const;
44 void setScriptArguments(PassRefPtr<ScriptArguments>); 44 void setScriptArguments(PassRefPtrWillBeRawPtr<ScriptArguments>);
45 unsigned long requestIdentifier() const; 45 unsigned long requestIdentifier() const;
46 void setRequestIdentifier(unsigned long); 46 void setRequestIdentifier(unsigned long);
47 WorkerGlobalScopeProxy* workerId() { return m_workerProxy; } 47 WorkerGlobalScopeProxy* workerId() { return m_workerProxy; }
48 void setWorkerId(WorkerGlobalScopeProxy* proxy) { m_workerProxy = proxy; } 48 void setWorkerId(WorkerGlobalScopeProxy* proxy) { m_workerProxy = proxy; }
49 49
50 MessageSource source() const; 50 MessageSource source() const;
51 MessageLevel level() const; 51 MessageLevel level() const;
52 const String& message() const; 52 const String& message() const;
53 unsigned columnNumber() const; 53 unsigned columnNumber() const;
54 54
55 void trace(Visitor*); 55 void trace(Visitor*);
56 56
57 private: 57 private:
58 ConsoleMessage(MessageSource, MessageLevel, const String& message, const Str ing& url = String(), unsigned lineNumber = 0, unsigned columnNumber = 0); 58 ConsoleMessage(MessageSource, MessageLevel, const String& message, const Str ing& url = String(), unsigned lineNumber = 0, unsigned columnNumber = 0);
59 59
60 MessageSource m_source; 60 MessageSource m_source;
61 MessageLevel m_level; 61 MessageLevel m_level;
62 MessageType m_type; 62 MessageType m_type;
63 String m_message; 63 String m_message;
64 String m_url; 64 String m_url;
65 unsigned m_lineNumber; 65 unsigned m_lineNumber;
66 unsigned m_columnNumber; 66 unsigned m_columnNumber;
67 RefPtrWillBeMember<ScriptCallStack> m_callStack; 67 RefPtrWillBeMember<ScriptCallStack> m_callStack;
68 OwnPtr<ScriptStateProtectingContext> m_scriptState; 68 OwnPtr<ScriptStateProtectingContext> m_scriptState;
69 RefPtr<ScriptArguments> m_scriptArguments; 69 RefPtrWillBeMember<ScriptArguments> m_scriptArguments;
70 unsigned long m_requestIdentifier; 70 unsigned long m_requestIdentifier;
71 WorkerGlobalScopeProxy* m_workerProxy; 71 WorkerGlobalScopeProxy* m_workerProxy;
72 }; 72 };
73 73
74 } // namespace blink 74 } // namespace blink
75 75
76 #endif // ConsoleMessage_h 76 #endif // ConsoleMessage_h
OLDNEW
« no previous file with comments | « Source/core/frame/FrameConsole.cpp ('k') | Source/core/inspector/ConsoleMessage.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698