| OLD | NEW | 
|---|
| 1 /* | 1 /* | 
| 2  * Copyright (C) 2011 Google Inc. All rights reserved. | 2  * Copyright (C) 2011 Google Inc. All rights reserved. | 
| 3  * | 3  * | 
| 4  * Redistribution and use in source and binary forms, with or without | 4  * Redistribution and use in source and binary forms, with or without | 
| 5  * modification, are permitted provided that the following conditions | 5  * modification, are permitted provided that the following conditions | 
| 6  * are met: | 6  * are met: | 
| 7  * 1.  Redistributions of source code must retain the above copyright | 7  * 1.  Redistributions of source code must retain the above copyright | 
| 8  *     notice, this list of conditions and the following disclaimer. | 8  *     notice, this list of conditions and the following disclaimer. | 
| 9  * 2.  Redistributions in binary form must reproduce the above copyright | 9  * 2.  Redistributions in binary form must reproduce the above copyright | 
| 10  *     notice, this list of conditions and the following disclaimer in the | 10  *     notice, this list of conditions and the following disclaimer in the | 
| (...skipping 25 matching lines...) Expand all  Loading... | 
| 36 #include "wtf/HashMap.h" | 36 #include "wtf/HashMap.h" | 
| 37 #include "wtf/Noncopyable.h" | 37 #include "wtf/Noncopyable.h" | 
| 38 #include "wtf/Vector.h" | 38 #include "wtf/Vector.h" | 
| 39 #include "wtf/text/StringHash.h" | 39 #include "wtf/text/StringHash.h" | 
| 40 | 40 | 
| 41 namespace blink { | 41 namespace blink { | 
| 42 | 42 | 
| 43 class ConsoleMessage; | 43 class ConsoleMessage; | 
| 44 class ConsoleMessageStorage; | 44 class ConsoleMessageStorage; | 
| 45 class DocumentLoader; | 45 class DocumentLoader; | 
| 46 class LocalDOMWindow; |  | 
| 47 class LocalFrame; | 46 class LocalFrame; | 
| 48 class InspectorConsoleMessage; |  | 
| 49 class InspectorFrontend; | 47 class InspectorFrontend; | 
| 50 class InjectedScriptManager; | 48 class InjectedScriptManager; | 
| 51 class InspectorTimelineAgent; | 49 class InspectorTimelineAgent; | 
| 52 class InstrumentingAgents; |  | 
| 53 class ResourceError; |  | 
| 54 class ResourceLoader; |  | 
| 55 class ResourceResponse; |  | 
| 56 class ScriptArguments; |  | 
| 57 class ScriptCallStack; |  | 
| 58 class ScriptProfile; | 50 class ScriptProfile; | 
| 59 class ThreadableLoaderClient; | 51 class ThreadableLoaderClient; | 
| 60 class WorkerGlobalScopeProxy; |  | 
| 61 class XMLHttpRequest; | 52 class XMLHttpRequest; | 
| 62 | 53 | 
| 63 typedef String ErrorString; | 54 typedef String ErrorString; | 
| 64 | 55 | 
| 65 class InspectorConsoleAgent : public InspectorBaseAgent<InspectorConsoleAgent>, 
     public InspectorBackendDispatcher::ConsoleCommandHandler { | 56 class InspectorConsoleAgent : public InspectorBaseAgent<InspectorConsoleAgent>, 
     public InspectorBackendDispatcher::ConsoleCommandHandler { | 
| 66     WTF_MAKE_NONCOPYABLE(InspectorConsoleAgent); | 57     WTF_MAKE_NONCOPYABLE(InspectorConsoleAgent); | 
| 67 public: | 58 public: | 
| 68     InspectorConsoleAgent(InspectorTimelineAgent*, InjectedScriptManager*); | 59     InspectorConsoleAgent(InspectorTimelineAgent*, InjectedScriptManager*); | 
| 69     virtual ~InspectorConsoleAgent(); | 60     virtual ~InspectorConsoleAgent(); | 
| 70     virtual void trace(Visitor*) override; | 61     virtual void trace(Visitor*) override; | 
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 105     InspectorFrontend::Console* m_frontend; | 96     InspectorFrontend::Console* m_frontend; | 
| 106     bool m_enabled; | 97     bool m_enabled; | 
| 107 private: | 98 private: | 
| 108     static int s_enabledAgentCount; | 99     static int s_enabledAgentCount; | 
| 109 }; | 100 }; | 
| 110 | 101 | 
| 111 } // namespace blink | 102 } // namespace blink | 
| 112 | 103 | 
| 113 | 104 | 
| 114 #endif // !defined(InspectorConsoleAgent_h) | 105 #endif // !defined(InspectorConsoleAgent_h) | 
| OLD | NEW | 
|---|