| 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 29 matching lines...) Expand all Loading... |
| 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; | 49 class GeolocationClientProxy; |
| 50 class GraphicsContext; | |
| 51 class HTMLInputElement; | |
| 52 class HistoryItem; | |
| 53 class IntSize; | 50 class IntSize; |
| 54 class KURL; | 51 class KURL; |
| 55 class Node; | |
| 56 class Range; | 52 class Range; |
| 57 class SharedWorkerRepositoryClientImpl; | 53 class SharedWorkerRepositoryClientImpl; |
| 58 class SubstituteData; | |
| 59 class TextFinder; | 54 class TextFinder; |
| 60 class WebDataSourceImpl; | 55 class WebDataSourceImpl; |
| 61 class WebInputElement; | |
| 62 class WebFrameClient; | 56 class WebFrameClient; |
| 63 class WebPerformance; | 57 class WebPerformance; |
| 64 class WebPlugin; | 58 class WebPlugin; |
| 65 class WebPluginContainerImpl; | 59 class WebPluginContainerImpl; |
| 66 class WebView; | 60 class WebView; |
| 67 class WebViewImpl; | 61 class WebViewImpl; |
| 68 struct FrameLoadRequest; | 62 struct FrameLoadRequest; |
| 69 struct WebPrintParams; | 63 struct WebPrintParams; |
| 70 struct WindowFeatures; | |
| 71 | 64 |
| 72 template <typename T> class WebVector; | 65 template <typename T> class WebVector; |
| 73 | 66 |
| 74 // Implementation of WebFrame, note that this is a reference counted object. | 67 // Implementation of WebFrame, note that this is a reference counted object. |
| 75 class WebLocalFrameImpl final : public RefCountedWillBeGarbageCollectedFinalized
<WebLocalFrameImpl>, public WebLocalFrame { | 68 class WebLocalFrameImpl final : public RefCountedWillBeGarbageCollectedFinalized
<WebLocalFrameImpl>, public WebLocalFrame { |
| 76 public: | 69 public: |
| 77 // WebFrame methods: | 70 // WebFrame methods: |
| 78 virtual bool isWebLocalFrame() const override; | 71 virtual bool isWebLocalFrame() const override; |
| 79 virtual WebLocalFrame* toWebLocalFrame() override; | 72 virtual WebLocalFrame* toWebLocalFrame() override; |
| 80 virtual bool isWebRemoteFrame() const override; | 73 virtual bool isWebRemoteFrame() const override; |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 GC_PLUGIN_IGNORE("340522") | 358 GC_PLUGIN_IGNORE("340522") |
| 366 Persistent<WebLocalFrameImpl> m_selfKeepAlive; | 359 Persistent<WebLocalFrameImpl> m_selfKeepAlive; |
| 367 #endif | 360 #endif |
| 368 }; | 361 }; |
| 369 | 362 |
| 370 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); | 363 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); |
| 371 | 364 |
| 372 } // namespace blink | 365 } // namespace blink |
| 373 | 366 |
| 374 #endif | 367 #endif |
| OLD | NEW |