| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
reserved. |
| 3 * Copyright (C) 2012 Google Inc. All rights reserved. | 3 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 #include "platform/network/ResourceLoadPriority.h" | 37 #include "platform/network/ResourceLoadPriority.h" |
| 38 #include "platform/weborigin/Referrer.h" | 38 #include "platform/weborigin/Referrer.h" |
| 39 #include "wtf/Forward.h" | 39 #include "wtf/Forward.h" |
| 40 #include "wtf/Vector.h" | 40 #include "wtf/Vector.h" |
| 41 #include <v8.h> | 41 #include <v8.h> |
| 42 | 42 |
| 43 namespace blink { | 43 namespace blink { |
| 44 class WebCookieJar; | 44 class WebCookieJar; |
| 45 class WebRTCPeerConnectionHandler; | 45 class WebRTCPeerConnectionHandler; |
| 46 class WebServiceWorkerProvider; | 46 class WebServiceWorkerProvider; |
| 47 class WebServiceWorkerProviderClient; | |
| 48 class WebSocketHandle; | 47 class WebSocketHandle; |
| 49 class WebApplicationCacheHost; | 48 class WebApplicationCacheHost; |
| 50 class WebApplicationCacheHostClient; | 49 class WebApplicationCacheHostClient; |
| 51 } | 50 } |
| 52 | 51 |
| 53 namespace blink { | 52 namespace blink { |
| 54 | 53 |
| 55 class Color; | |
| 56 class DOMWindowExtension; | |
| 57 class DOMWrapperWorld; | |
| 58 class DocumentLoader; | 54 class DocumentLoader; |
| 59 class Element; | |
| 60 class FetchRequest; | 55 class FetchRequest; |
| 61 class FrameLoader; | |
| 62 class FrameNetworkingContext; | |
| 63 class HTMLAppletElement; | 56 class HTMLAppletElement; |
| 64 class HTMLFormElement; | 57 class HTMLFormElement; |
| 65 class HTMLFrameOwnerElement; | 58 class HTMLFrameOwnerElement; |
| 66 class HTMLPlugInElement; | 59 class HTMLPlugInElement; |
| 67 class HistoryItem; | 60 class HistoryItem; |
| 68 class IntSize; | |
| 69 class KURL; | 61 class KURL; |
| 70 class LocalFrame; | 62 class LocalFrame; |
| 71 class MessageEvent; | 63 class MessageEvent; |
| 72 class Page; | |
| 73 class PluginView; | |
| 74 class ResourceError; | 64 class ResourceError; |
| 75 class ResourceHandle; | |
| 76 class ResourceRequest; | 65 class ResourceRequest; |
| 77 class ResourceResponse; | 66 class ResourceResponse; |
| 78 class SecurityOrigin; | 67 class SecurityOrigin; |
| 79 class SharedBuffer; | |
| 80 class SharedWorkerRepositoryClient; | 68 class SharedWorkerRepositoryClient; |
| 81 class SocketStreamHandle; | 69 class SocketStreamHandle; |
| 82 class SubstituteData; | 70 class SubstituteData; |
| 83 class Widget; | 71 class Widget; |
| 84 | 72 |
| 85 class FrameLoaderClient : public FrameClient { | 73 class FrameLoaderClient : public FrameClient { |
| 86 public: | 74 public: |
| 87 virtual ~FrameLoaderClient() { } | 75 virtual ~FrameLoaderClient() { } |
| 88 | 76 |
| 89 virtual bool hasWebView() const = 0; // mainly for assertions | 77 virtual bool hasWebView() const = 0; // mainly for assertions |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 virtual void didStopAllLoaders() { } | 218 virtual void didStopAllLoaders() { } |
| 231 | 219 |
| 232 virtual void dispatchDidChangeManifest() { } | 220 virtual void dispatchDidChangeManifest() { } |
| 233 | 221 |
| 234 virtual bool isFrameLoaderClientImpl() const { return false; } | 222 virtual bool isFrameLoaderClientImpl() const { return false; } |
| 235 }; | 223 }; |
| 236 | 224 |
| 237 } // namespace blink | 225 } // namespace blink |
| 238 | 226 |
| 239 #endif // FrameLoaderClient_h | 227 #endif // FrameLoaderClient_h |
| OLD | NEW |