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

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

Issue 564193002: Clean up forward declarations in Source/core/loader (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add MixedContentChecker Created 6 years, 3 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
« no previous file with comments | « Source/core/loader/FrameLoadRequest.h ('k') | Source/core/loader/FrameLoaderClient.h » ('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, 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 29 matching lines...) Expand all
40 #include "core/loader/FrameLoaderTypes.h" 40 #include "core/loader/FrameLoaderTypes.h"
41 #include "core/loader/HistoryItem.h" 41 #include "core/loader/HistoryItem.h"
42 #include "platform/Timer.h" 42 #include "platform/Timer.h"
43 #include "platform/network/ResourceRequest.h" 43 #include "platform/network/ResourceRequest.h"
44 #include "wtf/Forward.h" 44 #include "wtf/Forward.h"
45 #include "wtf/HashSet.h" 45 #include "wtf/HashSet.h"
46 #include "wtf/OwnPtr.h" 46 #include "wtf/OwnPtr.h"
47 47
48 namespace blink { 48 namespace blink {
49 49
50 class Chrome;
51 class DOMWrapperWorld;
52 class DocumentLoader; 50 class DocumentLoader;
53 class Event;
54 class FetchContext; 51 class FetchContext;
55 class FormState; 52 class FormState;
56 class FormSubmission;
57 class Frame; 53 class Frame;
58 class FrameLoaderClient; 54 class FrameLoaderClient;
59 class IconController;
60 class NavigationAction; 55 class NavigationAction;
61 class Page;
62 class ProgressTracker; 56 class ProgressTracker;
63 class ResourceError; 57 class ResourceError;
64 class ResourceResponse;
65 class SecurityOrigin;
66 class SerializedScriptValue; 58 class SerializedScriptValue;
67 class SubstituteData; 59 class SubstituteData;
68 60
69 struct FrameLoadRequest; 61 struct FrameLoadRequest;
70 struct WindowFeatures;
71 62
72 bool isBackForwardLoadType(FrameLoadType); 63 bool isBackForwardLoadType(FrameLoadType);
73 64
74 class FrameLoader { 65 class FrameLoader {
75 WTF_MAKE_NONCOPYABLE(FrameLoader); 66 WTF_MAKE_NONCOPYABLE(FrameLoader);
76 public: 67 public:
77 static ResourceRequest requestFromHistoryItem(HistoryItem*, ResourceRequestC achePolicy); 68 static ResourceRequest requestFromHistoryItem(HistoryItem*, ResourceRequestC achePolicy);
78 69
79 FrameLoader(LocalFrame*); 70 FrameLoader(LocalFrame*);
80 ~FrameLoader(); 71 ~FrameLoader();
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 257
267 bool m_didAccessInitialDocument; 258 bool m_didAccessInitialDocument;
268 Timer<FrameLoader> m_didAccessInitialDocumentTimer; 259 Timer<FrameLoader> m_didAccessInitialDocumentTimer;
269 260
270 SandboxFlags m_forcedSandboxFlags; 261 SandboxFlags m_forcedSandboxFlags;
271 }; 262 };
272 263
273 } // namespace blink 264 } // namespace blink
274 265
275 #endif // FrameLoader_h 266 #endif // FrameLoader_h
OLDNEW
« no previous file with comments | « Source/core/loader/FrameLoadRequest.h ('k') | Source/core/loader/FrameLoaderClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698