Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(115)

Side by Side Diff: Source/core/loader/FrameLoaderClient.h

Issue 318843003: Cleanup v8 usage in core (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix Skia compile Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/loader/EmptyClients.h ('k') | Source/core/testing/Internals.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 20 matching lines...) Expand all
31 #define FrameLoaderClient_h 31 #define FrameLoaderClient_h
32 32
33 #include "core/dom/IconURL.h" 33 #include "core/dom/IconURL.h"
34 #include "core/frame/FrameClient.h" 34 #include "core/frame/FrameClient.h"
35 #include "core/loader/FrameLoaderTypes.h" 35 #include "core/loader/FrameLoaderTypes.h"
36 #include "core/loader/NavigationPolicy.h" 36 #include "core/loader/NavigationPolicy.h"
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 41 #include <v8.h>
42 namespace v8 {
43 class Context;
44 template<class T> class Handle;
45 }
46 42
47 namespace blink { 43 namespace blink {
48 class WebCookieJar; 44 class WebCookieJar;
49 class WebRTCPeerConnectionHandler; 45 class WebRTCPeerConnectionHandler;
50 class WebServiceWorkerProvider; 46 class WebServiceWorkerProvider;
51 class WebServiceWorkerProviderClient; 47 class WebServiceWorkerProviderClient;
52 class WebSocketHandle; 48 class WebSocketHandle;
53 class WebApplicationCacheHost; 49 class WebApplicationCacheHost;
54 class WebApplicationCacheHostClient; 50 class WebApplicationCacheHostClient;
55 } 51 }
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 virtual void didStopAllLoaders() { } 226 virtual void didStopAllLoaders() { }
231 227
232 virtual void dispatchDidChangeManifest() { } 228 virtual void dispatchDidChangeManifest() { }
233 229
234 virtual bool isFrameLoaderClientImpl() const { return false; } 230 virtual bool isFrameLoaderClientImpl() const { return false; }
235 }; 231 };
236 232
237 } // namespace WebCore 233 } // namespace WebCore
238 234
239 #endif // FrameLoaderClient_h 235 #endif // FrameLoaderClient_h
OLDNEW
« no previous file with comments | « Source/core/loader/EmptyClients.h ('k') | Source/core/testing/Internals.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698