| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 class KURL; | 52 class KURL; |
| 53 class Node; | 53 class Node; |
| 54 class Range; | 54 class Range; |
| 55 class SubstituteData; | 55 class SubstituteData; |
| 56 struct FrameLoadRequest; | 56 struct FrameLoadRequest; |
| 57 struct WindowFeatures; | 57 struct WindowFeatures; |
| 58 } | 58 } |
| 59 | 59 |
| 60 namespace blink { | 60 namespace blink { |
| 61 class ChromePrintContext; | 61 class ChromePrintContext; |
| 62 class GeolocationClientProxy; |
| 62 class SharedWorkerRepositoryClientImpl; | 63 class SharedWorkerRepositoryClientImpl; |
| 63 class TextFinder; | 64 class TextFinder; |
| 64 class WebDataSourceImpl; | 65 class WebDataSourceImpl; |
| 65 class WebInputElement; | 66 class WebInputElement; |
| 66 class WebFrameClient; | 67 class WebFrameClient; |
| 67 class WebPerformance; | 68 class WebPerformance; |
| 68 class WebPlugin; | 69 class WebPlugin; |
| 69 class WebPluginContainerImpl; | 70 class WebPluginContainerImpl; |
| 70 class WebView; | 71 class WebView; |
| 71 class WebViewImpl; | 72 class WebViewImpl; |
| (...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 OwnPtr<ChromePrintContext> m_printContext; | 369 OwnPtr<ChromePrintContext> m_printContext; |
| 369 | 370 |
| 370 // Stores the additional input events offset and scale when device metrics e
mulation is enabled. | 371 // Stores the additional input events offset and scale when device metrics e
mulation is enabled. |
| 371 WebCore::IntSize m_inputEventsOffsetForEmulation; | 372 WebCore::IntSize m_inputEventsOffsetForEmulation; |
| 372 float m_inputEventsScaleFactorForEmulation; | 373 float m_inputEventsScaleFactorForEmulation; |
| 373 | 374 |
| 374 // The provider of desktop notifications; | 375 // The provider of desktop notifications; |
| 375 NotificationPresenterImpl m_notificationPresenter; | 376 NotificationPresenterImpl m_notificationPresenter; |
| 376 | 377 |
| 377 UserMediaClientImpl m_userMediaClientImpl; | 378 UserMediaClientImpl m_userMediaClientImpl; |
| 379 |
| 380 OwnPtr<GeolocationClientProxy> m_geolocationClientProxy; |
| 378 }; | 381 }; |
| 379 | 382 |
| 380 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); | 383 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); |
| 381 | 384 |
| 382 } // namespace blink | 385 } // namespace blink |
| 383 | 386 |
| 384 #endif | 387 #endif |
| OLD | NEW |