OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 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 28 matching lines...) Expand all Loading... |
39 #include "web/FrameLoaderClientImpl.h" | 39 #include "web/FrameLoaderClientImpl.h" |
40 #include "web/UserMediaClientImpl.h" | 40 #include "web/UserMediaClientImpl.h" |
41 #include "wtf/Compiler.h" | 41 #include "wtf/Compiler.h" |
42 #include "wtf/OwnPtr.h" | 42 #include "wtf/OwnPtr.h" |
43 #include "wtf/RefCounted.h" | 43 #include "wtf/RefCounted.h" |
44 #include "wtf/text/WTFString.h" | 44 #include "wtf/text/WTFString.h" |
45 | 45 |
46 namespace blink { | 46 namespace blink { |
47 | 47 |
48 class ChromePrintContext; | 48 class ChromePrintContext; |
49 class GeolocationClientProxy; | |
50 class IntSize; | 49 class IntSize; |
51 class KURL; | 50 class KURL; |
52 class Range; | 51 class Range; |
53 class SharedWorkerRepositoryClientImpl; | 52 class SharedWorkerRepositoryClientImpl; |
54 class TextFinder; | 53 class TextFinder; |
55 class WebAutofillClient; | 54 class WebAutofillClient; |
56 class WebDataSourceImpl; | 55 class WebDataSourceImpl; |
57 class WebDevToolsAgentImpl; | 56 class WebDevToolsAgentImpl; |
58 class WebDevToolsFrontendImpl; | 57 class WebDevToolsFrontendImpl; |
59 class WebFrameClient; | 58 class WebFrameClient; |
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
380 // Valid between calls to BeginPrint() and EndPrint(). Containts the print | 379 // Valid between calls to BeginPrint() and EndPrint(). Containts the print |
381 // information. Is used by PrintPage(). | 380 // information. Is used by PrintPage(). |
382 OwnPtrWillBeMember<ChromePrintContext> m_printContext; | 381 OwnPtrWillBeMember<ChromePrintContext> m_printContext; |
383 | 382 |
384 // Stores the additional input events offset and scale when device metrics e
mulation is enabled. | 383 // Stores the additional input events offset and scale when device metrics e
mulation is enabled. |
385 IntSize m_inputEventsOffsetForEmulation; | 384 IntSize m_inputEventsOffsetForEmulation; |
386 float m_inputEventsScaleFactorForEmulation; | 385 float m_inputEventsScaleFactorForEmulation; |
387 | 386 |
388 UserMediaClientImpl m_userMediaClientImpl; | 387 UserMediaClientImpl m_userMediaClientImpl; |
389 | 388 |
390 OwnPtrWillBeMember<GeolocationClientProxy> m_geolocationClientProxy; | |
391 | |
392 WebDevToolsFrontendImpl* m_webDevToolsFrontend; | 389 WebDevToolsFrontendImpl* m_webDevToolsFrontend; |
393 | 390 |
394 HashMap<AtomicString, OwnPtr<WebTestInterfaceFactory>> m_testInterfaces; | 391 HashMap<AtomicString, OwnPtr<WebTestInterfaceFactory>> m_testInterfaces; |
395 | 392 |
396 #if ENABLE(OILPAN) | 393 #if ENABLE(OILPAN) |
397 // Oilpan: WebLocalFrameImpl must remain alive until close() is called. | 394 // Oilpan: WebLocalFrameImpl must remain alive until close() is called. |
398 // Accomplish that by keeping a self-referential Persistent<>. It is | 395 // Accomplish that by keeping a self-referential Persistent<>. It is |
399 // cleared upon close(). | 396 // cleared upon close(). |
400 SelfKeepAlive<WebLocalFrameImpl> m_selfKeepAlive; | 397 SelfKeepAlive<WebLocalFrameImpl> m_selfKeepAlive; |
401 #endif | 398 #endif |
402 }; | 399 }; |
403 | 400 |
404 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); | 401 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); |
405 | 402 |
406 } // namespace blink | 403 } // namespace blink |
407 | 404 |
408 #endif | 405 #endif |
OLD | NEW |