| 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 30 matching lines...) Expand all  Loading... | 
| 41 #include "web/WebExport.h" | 41 #include "web/WebExport.h" | 
| 42 #include "web/WebFrameImplBase.h" | 42 #include "web/WebFrameImplBase.h" | 
| 43 #include "wtf/Compiler.h" | 43 #include "wtf/Compiler.h" | 
| 44 #include "wtf/OwnPtr.h" | 44 #include "wtf/OwnPtr.h" | 
| 45 #include "wtf/RefCounted.h" | 45 #include "wtf/RefCounted.h" | 
| 46 #include "wtf/text/WTFString.h" | 46 #include "wtf/text/WTFString.h" | 
| 47 | 47 | 
| 48 namespace blink { | 48 namespace blink { | 
| 49 | 49 | 
| 50 class ChromePrintContext; | 50 class ChromePrintContext; | 
| 51 class GeolocationClientProxy; |  | 
| 52 class IntSize; | 51 class IntSize; | 
| 53 class KURL; | 52 class KURL; | 
| 54 class Range; | 53 class Range; | 
| 55 class SharedWorkerRepositoryClientImpl; | 54 class SharedWorkerRepositoryClientImpl; | 
| 56 class TextFinder; | 55 class TextFinder; | 
| 57 class WebAutofillClient; | 56 class WebAutofillClient; | 
| 58 class WebDataSourceImpl; | 57 class WebDataSourceImpl; | 
| 59 class WebDevToolsAgentImpl; | 58 class WebDevToolsAgentImpl; | 
| 60 class WebDevToolsFrontendImpl; | 59 class WebDevToolsFrontendImpl; | 
| 61 class WebFrameClient; | 60 class WebFrameClient; | 
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 376     // Valid between calls to BeginPrint() and EndPrint(). Containts the print | 375     // Valid between calls to BeginPrint() and EndPrint(). Containts the print | 
| 377     // information. Is used by PrintPage(). | 376     // information. Is used by PrintPage(). | 
| 378     Member<ChromePrintContext> m_printContext; | 377     Member<ChromePrintContext> m_printContext; | 
| 379 | 378 | 
| 380     // Stores the additional input events offset and scale when device metrics e
     mulation is enabled. | 379     // Stores the additional input events offset and scale when device metrics e
     mulation is enabled. | 
| 381     IntSize m_inputEventsOffsetForEmulation; | 380     IntSize m_inputEventsOffsetForEmulation; | 
| 382     float m_inputEventsScaleFactorForEmulation; | 381     float m_inputEventsScaleFactorForEmulation; | 
| 383 | 382 | 
| 384     UserMediaClientImpl m_userMediaClientImpl; | 383     UserMediaClientImpl m_userMediaClientImpl; | 
| 385 | 384 | 
| 386     Member<GeolocationClientProxy> m_geolocationClientProxy; |  | 
| 387 |  | 
| 388     WebDevToolsFrontendImpl* m_webDevToolsFrontend; | 385     WebDevToolsFrontendImpl* m_webDevToolsFrontend; | 
| 389 | 386 | 
| 390     Member<Node> m_contextMenuNode; | 387     Member<Node> m_contextMenuNode; | 
| 391 | 388 | 
| 392     // Oilpan: WebLocalFrameImpl must remain alive until close() is called. | 389     // Oilpan: WebLocalFrameImpl must remain alive until close() is called. | 
| 393     // Accomplish that by keeping a self-referential Persistent<>. It is | 390     // Accomplish that by keeping a self-referential Persistent<>. It is | 
| 394     // cleared upon close(). | 391     // cleared upon close(). | 
| 395     SelfKeepAlive<WebLocalFrameImpl> m_selfKeepAlive; | 392     SelfKeepAlive<WebLocalFrameImpl> m_selfKeepAlive; | 
| 396 }; | 393 }; | 
| 397 | 394 | 
| 398 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(), 
     frame.isWebLocalFrame()); | 395 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(), 
     frame.isWebLocalFrame()); | 
| 399 | 396 | 
| 400 } // namespace blink | 397 } // namespace blink | 
| 401 | 398 | 
| 402 #endif | 399 #endif | 
| OLD | NEW | 
|---|