| 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 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 // Valid between calls to BeginPrint() and EndPrint(). Containts the print | 374 // Valid between calls to BeginPrint() and EndPrint(). Containts the print |
| 376 // information. Is used by PrintPage(). | 375 // information. Is used by PrintPage(). |
| 377 Member<ChromePrintContext> m_printContext; | 376 Member<ChromePrintContext> m_printContext; |
| 378 | 377 |
| 379 // Stores the additional input events offset and scale when device metrics e
mulation is enabled. | 378 // Stores the additional input events offset and scale when device metrics e
mulation is enabled. |
| 380 IntSize m_inputEventsOffsetForEmulation; | 379 IntSize m_inputEventsOffsetForEmulation; |
| 381 float m_inputEventsScaleFactorForEmulation; | 380 float m_inputEventsScaleFactorForEmulation; |
| 382 | 381 |
| 383 UserMediaClientImpl m_userMediaClientImpl; | 382 UserMediaClientImpl m_userMediaClientImpl; |
| 384 | 383 |
| 385 Member<GeolocationClientProxy> m_geolocationClientProxy; | |
| 386 | |
| 387 WebDevToolsFrontendImpl* m_webDevToolsFrontend; | 384 WebDevToolsFrontendImpl* m_webDevToolsFrontend; |
| 388 | 385 |
| 389 Member<Node> m_contextMenuNode; | 386 Member<Node> m_contextMenuNode; |
| 390 | 387 |
| 391 // Oilpan: WebLocalFrameImpl must remain alive until close() is called. | 388 // Oilpan: WebLocalFrameImpl must remain alive until close() is called. |
| 392 // Accomplish that by keeping a self-referential Persistent<>. It is | 389 // Accomplish that by keeping a self-referential Persistent<>. It is |
| 393 // cleared upon close(). | 390 // cleared upon close(). |
| 394 SelfKeepAlive<WebLocalFrameImpl> m_selfKeepAlive; | 391 SelfKeepAlive<WebLocalFrameImpl> m_selfKeepAlive; |
| 395 }; | 392 }; |
| 396 | 393 |
| 397 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); | 394 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); |
| 398 | 395 |
| 399 } // namespace blink | 396 } // namespace blink |
| 400 | 397 |
| 401 #endif | 398 #endif |
| OLD | NEW |