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 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 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
206 void viewportChanged(); | 206 void viewportChanged(); |
207 | 207 |
208 PassRefPtr<TypeBuilder::Page::Frame> buildObjectForFrame(LocalFrame*); | 208 PassRefPtr<TypeBuilder::Page::Frame> buildObjectForFrame(LocalFrame*); |
209 PassRefPtr<TypeBuilder::Page::FrameResourceTree> buildObjectForFrameTree(Loc alFrame*); | 209 PassRefPtr<TypeBuilder::Page::FrameResourceTree> buildObjectForFrameTree(Loc alFrame*); |
210 RawPtrWillBeMember<Page> m_page; | 210 RawPtrWillBeMember<Page> m_page; |
211 RawPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager; | 211 RawPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager; |
212 RawPtrWillBeMember<InspectorDebuggerAgent> m_debuggerAgent; | 212 RawPtrWillBeMember<InspectorDebuggerAgent> m_debuggerAgent; |
213 RawPtrWillBeMember<InspectorCSSAgent> m_cssAgent; | 213 RawPtrWillBeMember<InspectorCSSAgent> m_cssAgent; |
214 Client* m_client; | 214 Client* m_client; |
215 InspectorFrontend::Page* m_frontend; | 215 InspectorFrontend::Page* m_frontend; |
216 InspectorOverlay* m_overlay; | 216 RawPtrWillBeMember<InspectorOverlay> m_overlay; |
217 long m_lastScriptIdentifier; | 217 long m_lastScriptIdentifier; |
218 String m_pendingScriptToEvaluateOnLoadOnce; | 218 String m_pendingScriptToEvaluateOnLoadOnce; |
219 String m_scriptToEvaluateOnLoadOnce; | 219 String m_scriptToEvaluateOnLoadOnce; |
220 HashMap<LocalFrame*, String> m_frameToIdentifier; | 220 HashMap<LocalFrame*, String> m_frameToIdentifier; |
221 HashMap<String, LocalFrame*> m_identifierToFrame; | 221 HashMap<String, LocalFrame*> m_identifierToFrame; |
haraken
2015/03/13 12:38:40
Can these LocalFrames be Members?
BTW, can the pl
sof
2015/03/13 12:45:04
It might be possible, I forget if this is one of t
| |
222 HashMap<DocumentLoader*, String> m_loaderToIdentifier; | 222 HashMap<DocumentLoader*, String> m_loaderToIdentifier; |
223 bool m_enabled; | 223 bool m_enabled; |
224 bool m_viewportNotificationsEnabled; | 224 bool m_viewportNotificationsEnabled; |
225 | 225 |
226 bool m_touchEmulationEnabled; | 226 bool m_touchEmulationEnabled; |
227 bool m_originalTouchEnabled; | 227 bool m_originalTouchEnabled; |
228 bool m_originalDeviceSupportsMouse; | 228 bool m_originalDeviceSupportsMouse; |
229 bool m_originalDeviceSupportsTouch; | 229 bool m_originalDeviceSupportsTouch; |
230 int m_originalMaxTouchPoints; | 230 int m_originalMaxTouchPoints; |
231 | 231 |
232 bool m_embedderScriptEnabled; | 232 bool m_embedderScriptEnabled; |
233 bool m_reloading; | 233 bool m_reloading; |
234 | 234 |
235 OwnPtrWillBeMember<InspectorResourceContentLoader> m_inspectorResourceConten tLoader; | 235 OwnPtrWillBeMember<InspectorResourceContentLoader> m_inspectorResourceConten tLoader; |
236 }; | 236 }; |
237 | 237 |
238 | 238 |
239 } // namespace blink | 239 } // namespace blink |
240 | 240 |
241 | 241 |
242 #endif // !defined(InspectorPagerAgent_h) | 242 #endif // !defined(InspectorPagerAgent_h) |
OLD | NEW |