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

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

Issue 932523003: DevTools: [Blink-side] Fix debugger command order (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add m_attached check Created 5 years, 10 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 | Source/web/WebDevToolsAgentImpl.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) 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 class InspectorClient; 48 class InspectorClient;
49 class InspectorController; 49 class InspectorController;
50 class IntPoint; 50 class IntPoint;
51 class Page; 51 class Page;
52 class PlatformKeyboardEvent; 52 class PlatformKeyboardEvent;
53 class WebDevToolsAgentClient; 53 class WebDevToolsAgentClient;
54 class WebInputEvent; 54 class WebInputEvent;
55 class WebLocalFrameImpl; 55 class WebLocalFrameImpl;
56 class WebString; 56 class WebString;
57 class WebViewImpl; 57 class WebViewImpl;
58 class DebuggerTask;
58 59
59 class WebDevToolsAgentImpl final 60 class WebDevToolsAgentImpl final
60 : public WebDevToolsAgent 61 : public WebDevToolsAgent
61 , public InspectorClient 62 , public InspectorClient
62 , public InspectorFrontendChannel 63 , public InspectorFrontendChannel
63 , public WebPageOverlay 64 , public WebPageOverlay
64 , private WebThread::TaskObserver { 65 , private WebThread::TaskObserver {
65 public: 66 public:
66 WebDevToolsAgentImpl(WebViewImpl* webViewImpl, WebDevToolsAgentClient* clien t); 67 WebDevToolsAgentImpl(WebViewImpl* webViewImpl, WebDevToolsAgentClient* clien t);
67 virtual ~WebDevToolsAgentImpl(); 68 virtual ~WebDevToolsAgentImpl();
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 float m_originalDefaultMinimumPageScaleFactor; 133 float m_originalDefaultMinimumPageScaleFactor;
133 float m_originalDefaultMaximumPageScaleFactor; 134 float m_originalDefaultMaximumPageScaleFactor;
134 135
135 bool m_touchEventEmulationEnabled; 136 bool m_touchEventEmulationEnabled;
136 OwnPtr<IntPoint> m_lastPinchAnchorCss; 137 OwnPtr<IntPoint> m_lastPinchAnchorCss;
137 OwnPtr<IntPoint> m_lastPinchAnchorDip; 138 OwnPtr<IntPoint> m_lastPinchAnchorDip;
138 139
139 typedef Vector<RefPtr<JSONObject> > NotificationQueue; 140 typedef Vector<RefPtr<JSONObject> > NotificationQueue;
140 NotificationQueue m_notificationQueue; 141 NotificationQueue m_notificationQueue;
141 String m_stateCookie; 142 String m_stateCookie;
143
144 friend class DebuggerTask;
142 }; 145 };
143 146
144 } // namespace blink 147 } // namespace blink
145 148
146 #endif 149 #endif
OLDNEW
« no previous file with comments | « no previous file | Source/web/WebDevToolsAgentImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698