| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007 Apple 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 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 struct ResourceRequest; | 70 struct ResourceRequest; |
| 71 class ResourceResponse; | 71 class ResourceResponse; |
| 72 class ResourceError; | 72 class ResourceError; |
| 73 class ScriptCallStack; | 73 class ScriptCallStack; |
| 74 class ScriptState; | 74 class ScriptState; |
| 75 class SharedBuffer; | 75 class SharedBuffer; |
| 76 | 76 |
| 77 struct ConsoleMessage; | 77 struct ConsoleMessage; |
| 78 struct InspectorDatabaseResource; | 78 struct InspectorDatabaseResource; |
| 79 struct InspectorDOMStorageResource; | 79 struct InspectorDOMStorageResource; |
| 80 struct InspectorResource; | 80 class InspectorResource; |
| 81 | 81 |
| 82 class InspectorController : public RefCounted<InspectorController> | 82 class InspectorController : public RefCounted<InspectorController> |
| 83 #if ENABLE(JAVASCRIPT_DEBUGGER) | 83 #if ENABLE(JAVASCRIPT_DEBUGGER) |
| 84 , JavaScriptDebugListener | 84 , JavaScriptDebugListener |
| 85 #endif | 85 #endif |
| 86 { | 86 { |
| 87 public: | 87 public: |
| 88 | 88 |
| 89 typedef HashMap<unsigned long, RefPtr<InspectorResource> > ResourcesMap; | 89 typedef HashMap<unsigned long, RefPtr<InspectorResource> > ResourcesMap; |
| 90 typedef HashMap<RefPtr<Frame>, ResourcesMap*> FrameResourcesMap; | 90 typedef HashMap<RefPtr<Frame>, ResourcesMap*> FrameResourcesMap; |
| (...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 416 unsigned m_nextUserInitiatedProfileNumber; | 416 unsigned m_nextUserInitiatedProfileNumber; |
| 417 ConsoleMessage* m_previousMessage; | 417 ConsoleMessage* m_previousMessage; |
| 418 #if USE(JSC) | 418 #if USE(JSC) |
| 419 Timer<InspectorController> m_startProfiling; | 419 Timer<InspectorController> m_startProfiling; |
| 420 #endif | 420 #endif |
| 421 }; | 421 }; |
| 422 | 422 |
| 423 } // namespace WebCore | 423 } // namespace WebCore |
| 424 | 424 |
| 425 #endif // !defined(InspectorController_h) | 425 #endif // !defined(InspectorController_h) |
| OLD | NEW |