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

Side by Side Diff: Source/web/WebDevToolsAgentImpl.h

Issue 1326693003: Revert of Make classes and structures in web fast-allocated. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 3 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/web/ValidationMessageClientImpl.h ('k') | Source/web/WebDevToolsFrontendImpl.h » ('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) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 class WebViewImpl; 67 class WebViewImpl;
68 68
69 class WebDevToolsAgentImpl final 69 class WebDevToolsAgentImpl final
70 : public NoBaseWillBeGarbageCollectedFinalized<WebDevToolsAgentImpl> 70 : public NoBaseWillBeGarbageCollectedFinalized<WebDevToolsAgentImpl>
71 , public WebDevToolsAgent 71 , public WebDevToolsAgent
72 , public InspectorStateClient 72 , public InspectorStateClient
73 , public InspectorTracingAgent::Client 73 , public InspectorTracingAgent::Client
74 , public InspectorRuntimeAgent::Client 74 , public InspectorRuntimeAgent::Client
75 , public InspectorFrontendChannel 75 , public InspectorFrontendChannel
76 , private WebThread::TaskObserver { 76 , private WebThread::TaskObserver {
77 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(WebDevToolsAgentImpl);
78 public: 77 public:
79 static PassOwnPtrWillBeRawPtr<WebDevToolsAgentImpl> create(WebLocalFrameImpl *, WebDevToolsAgentClient*); 78 static PassOwnPtrWillBeRawPtr<WebDevToolsAgentImpl> create(WebLocalFrameImpl *, WebDevToolsAgentClient*);
80 ~WebDevToolsAgentImpl() override; 79 ~WebDevToolsAgentImpl() override;
81 void dispose(); 80 void dispose();
82 DECLARE_VIRTUAL_TRACE(); 81 DECLARE_VIRTUAL_TRACE();
83 82
84 void willBeDestroyed(); 83 void willBeDestroyed();
85 WebDevToolsAgentClient* client() { return m_client; } 84 WebDevToolsAgentClient* client() { return m_client; }
86 InspectorOverlayImpl* overlay() const { return m_overlay.get(); } 85 InspectorOverlayImpl* overlay() const { return m_overlay.get(); }
87 void flushPendingProtocolNotifications(); 86 void flushPendingProtocolNotifications();
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 typedef Vector<RefPtr<JSONObject>> NotificationQueue; 161 typedef Vector<RefPtr<JSONObject>> NotificationQueue;
163 NotificationQueue m_notificationQueue; 162 NotificationQueue m_notificationQueue;
164 String m_stateCookie; 163 String m_stateCookie;
165 164
166 friend class DebuggerTask; 165 friend class DebuggerTask;
167 }; 166 };
168 167
169 } // namespace blink 168 } // namespace blink
170 169
171 #endif 170 #endif
OLDNEW
« no previous file with comments | « Source/web/ValidationMessageClientImpl.h ('k') | Source/web/WebDevToolsFrontendImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698