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

Side by Side Diff: third_party/WebKit/WebCore/inspector/InspectorController.h

Issue 45064: Change InspectorResource definition from struct to class (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | third_party/WebKit/WebCore/inspector/InspectorController.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 /* 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
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
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)
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/WebCore/inspector/InspectorController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698