| 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 22 matching lines...) Expand all Loading... |
| 33 | 33 |
| 34 #include "WebCompositionUnderline.h" | 34 #include "WebCompositionUnderline.h" |
| 35 #include "WebHistoryItem.h" | 35 #include "WebHistoryItem.h" |
| 36 #include "WebIconURL.h" | 36 #include "WebIconURL.h" |
| 37 #include "WebNode.h" | 37 #include "WebNode.h" |
| 38 #include "WebURLLoaderOptions.h" | 38 #include "WebURLLoaderOptions.h" |
| 39 #include "public/platform/WebCachePolicy.h" | 39 #include "public/platform/WebCachePolicy.h" |
| 40 #include "public/platform/WebCanvas.h" | 40 #include "public/platform/WebCanvas.h" |
| 41 #include "public/platform/WebInsecureRequestPolicy.h" | 41 #include "public/platform/WebInsecureRequestPolicy.h" |
| 42 #include "public/platform/WebMessagePortChannel.h" | 42 #include "public/platform/WebMessagePortChannel.h" |
| 43 #include "public/platform/WebPrivateOwnPtr.h" | |
| 44 #include "public/platform/WebReferrerPolicy.h" | 43 #include "public/platform/WebReferrerPolicy.h" |
| 45 #include "public/platform/WebURL.h" | 44 #include "public/platform/WebURL.h" |
| 46 #include "public/platform/WebURLRequest.h" | 45 #include "public/platform/WebURLRequest.h" |
| 47 #include "public/web/WebFrameLoadType.h" | 46 #include "public/web/WebFrameLoadType.h" |
| 48 #include "public/web/WebTreeScopeType.h" | 47 #include "public/web/WebTreeScopeType.h" |
| 48 #include <memory> |
| 49 | 49 |
| 50 struct NPObject; | 50 struct NPObject; |
| 51 | 51 |
| 52 namespace v8 { | 52 namespace v8 { |
| 53 class Context; | 53 class Context; |
| 54 class Function; | 54 class Function; |
| 55 class Object; | 55 class Object; |
| 56 class Value; | 56 class Value; |
| 57 template <class T> class Local; | 57 template <class T> class Local; |
| 58 } | 58 } |
| (...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 509 | 509 |
| 510 const WebTreeScopeType m_scope; | 510 const WebTreeScopeType m_scope; |
| 511 | 511 |
| 512 WebFrame* m_parent; | 512 WebFrame* m_parent; |
| 513 WebFrame* m_previousSibling; | 513 WebFrame* m_previousSibling; |
| 514 WebFrame* m_nextSibling; | 514 WebFrame* m_nextSibling; |
| 515 WebFrame* m_firstChild; | 515 WebFrame* m_firstChild; |
| 516 WebFrame* m_lastChild; | 516 WebFrame* m_lastChild; |
| 517 | 517 |
| 518 WebFrame* m_opener; | 518 WebFrame* m_opener; |
| 519 WebPrivateOwnPtr<OpenedFrameTracker> m_openedFrameTracker; | 519 std::unique_ptr<OpenedFrameTracker> m_openedFrameTracker; |
| 520 }; | 520 }; |
| 521 | 521 |
| 522 } // namespace blink | 522 } // namespace blink |
| 523 | 523 |
| 524 #endif | 524 #endif |
| OLD | NEW |