OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2009, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2011 Apple Inc. All rights reserved. |
3 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 3 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
4 * Copyright (C) Research In Motion Limited 2009. All rights reserved. | 4 * Copyright (C) Research In Motion Limited 2009. All rights reserved. |
5 * Copyright (C) 2011 Google Inc. All rights reserved. | 5 * Copyright (C) 2011 Google Inc. All rights reserved. |
6 * | 6 * |
7 * Redistribution and use in source and binary forms, with or without | 7 * Redistribution and use in source and binary forms, with or without |
8 * modification, are permitted provided that the following conditions | 8 * modification, are permitted provided that the following conditions |
9 * are met: | 9 * are met: |
10 * | 10 * |
(...skipping 16 matching lines...) Expand all Loading... |
27 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 27 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
29 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 29 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
30 */ | 30 */ |
31 | 31 |
32 #ifndef SKY_ENGINE_CORE_LOADER_FRAMELOADER_H_ | 32 #ifndef SKY_ENGINE_CORE_LOADER_FRAMELOADER_H_ |
33 #define SKY_ENGINE_CORE_LOADER_FRAMELOADER_H_ | 33 #define SKY_ENGINE_CORE_LOADER_FRAMELOADER_H_ |
34 | 34 |
35 #include "sky/engine/core/loader/FrameLoaderTypes.h" | 35 #include "sky/engine/core/loader/FrameLoaderTypes.h" |
36 #include "sky/engine/platform/Timer.h" | 36 #include "sky/engine/platform/Timer.h" |
37 #include "sky/engine/platform/network/ResourceRequest.h" | |
38 #include "sky/engine/wtf/Forward.h" | 37 #include "sky/engine/wtf/Forward.h" |
39 #include "sky/engine/wtf/HashSet.h" | 38 #include "sky/engine/wtf/HashSet.h" |
40 #include "sky/engine/wtf/OwnPtr.h" | 39 #include "sky/engine/wtf/OwnPtr.h" |
41 | 40 |
42 namespace blink { | 41 namespace blink { |
43 | 42 |
44 class Chrome; | 43 class Chrome; |
45 class DOMWrapperWorld; | 44 class DOMWrapperWorld; |
46 class Document; | 45 class Document; |
47 class Event; | 46 class Event; |
(...skipping 30 matching lines...) Expand all Loading... |
78 | 77 |
79 private: | 78 private: |
80 LocalFrame* m_frame; | 79 LocalFrame* m_frame; |
81 | 80 |
82 bool m_inStopAllLoaders; | 81 bool m_inStopAllLoaders; |
83 }; | 82 }; |
84 | 83 |
85 } // namespace blink | 84 } // namespace blink |
86 | 85 |
87 #endif // SKY_ENGINE_CORE_LOADER_FRAMELOADER_H_ | 86 #endif // SKY_ENGINE_CORE_LOADER_FRAMELOADER_H_ |
OLD | NEW |