| 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 21 matching lines...) Expand all Loading... |
| 32 #define WebFrame_h | 32 #define WebFrame_h |
| 33 | 33 |
| 34 #include "WebIconURL.h" | 34 #include "WebIconURL.h" |
| 35 #include "WebNode.h" | 35 #include "WebNode.h" |
| 36 #include "public/platform/WebCanvas.h" | 36 #include "public/platform/WebCanvas.h" |
| 37 #include "public/platform/WebInsecureRequestPolicy.h" | 37 #include "public/platform/WebInsecureRequestPolicy.h" |
| 38 #include "public/web/WebFrameLoadType.h" | 38 #include "public/web/WebFrameLoadType.h" |
| 39 #include "public/web/WebTreeScopeType.h" | 39 #include "public/web/WebTreeScopeType.h" |
| 40 #include <memory> | 40 #include <memory> |
| 41 | 41 |
| 42 struct NPObject; | |
| 43 | |
| 44 namespace v8 { | 42 namespace v8 { |
| 45 class Context; | 43 class Context; |
| 46 class Function; | 44 class Function; |
| 47 class Object; | |
| 48 class Value; | 45 class Value; |
| 49 template <class T> | 46 template <class T> |
| 50 class Local; | 47 class Local; |
| 51 } | 48 } |
| 52 | 49 |
| 53 namespace blink { | 50 namespace blink { |
| 54 | 51 |
| 55 class Frame; | 52 class Frame; |
| 56 class OpenedFrameTracker; | 53 class OpenedFrameTracker; |
| 57 class Visitor; | 54 class Visitor; |
| 58 class WebAssociatedURLLoader; | 55 class WebAssociatedURLLoader; |
| 59 struct WebAssociatedURLLoaderOptions; | 56 struct WebAssociatedURLLoaderOptions; |
| 60 class WebDOMEvent; | 57 class WebDOMEvent; |
| 61 class WebData; | 58 class WebData; |
| 62 class WebDataSource; | 59 class WebDataSource; |
| 63 class WebDocument; | 60 class WebDocument; |
| 64 class WebElement; | 61 class WebElement; |
| 65 class WebFrameImplBase; | 62 class WebFrameImplBase; |
| 66 class WebLayer; | |
| 67 class WebLocalFrame; | 63 class WebLocalFrame; |
| 68 class WebPerformance; | 64 class WebPerformance; |
| 69 class WebRemoteFrame; | 65 class WebRemoteFrame; |
| 70 class WebSecurityOrigin; | 66 class WebSecurityOrigin; |
| 71 class WebSharedWorkerRepositoryClient; | 67 class WebSharedWorkerRepositoryClient; |
| 72 class WebString; | 68 class WebString; |
| 73 class WebURL; | 69 class WebURL; |
| 74 class WebURLRequest; | 70 class WebURLRequest; |
| 75 class WebView; | 71 class WebView; |
| 76 enum class WebSandboxFlags; | 72 enum class WebSandboxFlags; |
| (...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 493 WebFrame* m_firstChild; | 489 WebFrame* m_firstChild; |
| 494 WebFrame* m_lastChild; | 490 WebFrame* m_lastChild; |
| 495 | 491 |
| 496 WebFrame* m_opener; | 492 WebFrame* m_opener; |
| 497 std::unique_ptr<OpenedFrameTracker> m_openedFrameTracker; | 493 std::unique_ptr<OpenedFrameTracker> m_openedFrameTracker; |
| 498 }; | 494 }; |
| 499 | 495 |
| 500 } // namespace blink | 496 } // namespace blink |
| 501 | 497 |
| 502 #endif | 498 #endif |
| OLD | NEW |