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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 class KURL; | 51 class KURL; |
52 class Node; | 52 class Node; |
53 class Range; | 53 class Range; |
54 class SubstituteData; | 54 class SubstituteData; |
55 struct FrameLoadRequest; | 55 struct FrameLoadRequest; |
56 struct WindowFeatures; | 56 struct WindowFeatures; |
57 } | 57 } |
58 | 58 |
59 namespace blink { | 59 namespace blink { |
60 class ChromePrintContext; | 60 class ChromePrintContext; |
| 61 class GeolocationClientProxy; |
61 class SharedWorkerRepositoryClientImpl; | 62 class SharedWorkerRepositoryClientImpl; |
62 class TextFinder; | 63 class TextFinder; |
63 class WebDataSourceImpl; | 64 class WebDataSourceImpl; |
64 class WebInputElement; | 65 class WebInputElement; |
65 class WebFrameClient; | 66 class WebFrameClient; |
66 class WebPerformance; | 67 class WebPerformance; |
67 class WebPlugin; | 68 class WebPlugin; |
68 class WebPluginContainerImpl; | 69 class WebPluginContainerImpl; |
69 class WebView; | 70 class WebView; |
70 class WebViewImpl; | 71 class WebViewImpl; |
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
347 | 348 |
348 // Valid between calls to BeginPrint() and EndPrint(). Containts the print | 349 // Valid between calls to BeginPrint() and EndPrint(). Containts the print |
349 // information. Is used by PrintPage(). | 350 // information. Is used by PrintPage(). |
350 OwnPtr<ChromePrintContext> m_printContext; | 351 OwnPtr<ChromePrintContext> m_printContext; |
351 | 352 |
352 // Stores the additional input events offset and scale when device metrics e
mulation is enabled. | 353 // Stores the additional input events offset and scale when device metrics e
mulation is enabled. |
353 WebCore::IntSize m_inputEventsOffsetForEmulation; | 354 WebCore::IntSize m_inputEventsOffsetForEmulation; |
354 float m_inputEventsScaleFactorForEmulation; | 355 float m_inputEventsScaleFactorForEmulation; |
355 | 356 |
356 UserMediaClientImpl m_userMediaClientImpl; | 357 UserMediaClientImpl m_userMediaClientImpl; |
| 358 |
| 359 OwnPtr<GeolocationClientProxy> m_geolocationClientProxy; |
357 }; | 360 }; |
358 | 361 |
359 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); | 362 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); |
360 | 363 |
361 } // namespace blink | 364 } // namespace blink |
362 | 365 |
363 #endif | 366 #endif |
OLD | NEW |