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 17 matching lines...) Expand all Loading... | |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #ifndef WebFrame_h | 31 #ifndef WebFrame_h |
32 #define WebFrame_h | 32 #define WebFrame_h |
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 "WebSerializedScriptValue.h" | |
38 #include "WebURLLoaderOptions.h" | 39 #include "WebURLLoaderOptions.h" |
39 #include "public/platform/WebCanvas.h" | 40 #include "public/platform/WebCanvas.h" |
40 #include "public/platform/WebMessagePortChannel.h" | 41 #include "public/platform/WebMessagePortChannel.h" |
41 #include "public/platform/WebPrivateOwnPtr.h" | 42 #include "public/platform/WebPrivateOwnPtr.h" |
42 #include "public/platform/WebReferrerPolicy.h" | 43 #include "public/platform/WebReferrerPolicy.h" |
43 #include "public/platform/WebURL.h" | 44 #include "public/platform/WebURL.h" |
44 #include "public/platform/WebURLRequest.h" | 45 #include "public/platform/WebURLRequest.h" |
46 #include "public/web/WebFrameLoadType.h" | |
Nate Chapin
2015/06/04 23:23:09
Why these #includes?
clamy
2015/06/05 14:11:48
There were left-overs. Removed them.
| |
45 #include "public/web/WebTreeScopeType.h" | 47 #include "public/web/WebTreeScopeType.h" |
46 | 48 |
47 struct NPObject; | 49 struct NPObject; |
48 | 50 |
49 namespace v8 { | 51 namespace v8 { |
50 class Context; | 52 class Context; |
51 class Function; | 53 class Function; |
52 class Object; | 54 class Object; |
53 class Value; | 55 class Value; |
54 template <class T> class Local; | 56 template <class T> class Local; |
(...skipping 678 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
733 WebPrivateOwnPtr<OpenedFrameTracker> m_openedFrameTracker; | 735 WebPrivateOwnPtr<OpenedFrameTracker> m_openedFrameTracker; |
734 }; | 736 }; |
735 | 737 |
736 #if BLINK_IMPLEMENTATION | 738 #if BLINK_IMPLEMENTATION |
737 Frame* toCoreFrame(const WebFrame*); | 739 Frame* toCoreFrame(const WebFrame*); |
738 #endif | 740 #endif |
739 | 741 |
740 } // namespace blink | 742 } // namespace blink |
741 | 743 |
742 #endif | 744 #endif |
OLD | NEW |