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

Side by Side Diff: Source/web/FrameLoaderClientImpl.h

Issue 663893002: Clean up forward declarations in Source/web (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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/web/ExternalPopupMenu.h ('k') | Source/web/InspectorClientImpl.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) 2009, 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2011 Apple 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 are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * 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 23 matching lines...) Expand all
34 34
35 #include "core/loader/FrameLoaderClient.h" 35 #include "core/loader/FrameLoaderClient.h"
36 #include "platform/heap/Handle.h" 36 #include "platform/heap/Handle.h"
37 #include "platform/weborigin/KURL.h" 37 #include "platform/weborigin/KURL.h"
38 #include "wtf/PassOwnPtr.h" 38 #include "wtf/PassOwnPtr.h"
39 #include "wtf/RefPtr.h" 39 #include "wtf/RefPtr.h"
40 40
41 namespace blink { 41 namespace blink {
42 42
43 class WebLocalFrameImpl; 43 class WebLocalFrameImpl;
44 class WebPluginContainerImpl;
45 class WebPluginLoadObserver; 44 class WebPluginLoadObserver;
46 45
47 class FrameLoaderClientImpl final : public FrameLoaderClient { 46 class FrameLoaderClientImpl final : public FrameLoaderClient {
48 public: 47 public:
49 explicit FrameLoaderClientImpl(WebLocalFrameImpl* webFrame); 48 explicit FrameLoaderClientImpl(WebLocalFrameImpl* webFrame);
50 virtual ~FrameLoaderClientImpl(); 49 virtual ~FrameLoaderClientImpl();
51 50
52 WebLocalFrameImpl* webFrame() const { return m_webFrame; } 51 WebLocalFrameImpl* webFrame() const { return m_webFrame; }
53 52
54 // FrameLoaderClient ---------------------------------------------- 53 // FrameLoaderClient ----------------------------------------------
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 // The WebFrame that owns this object and manages its lifetime. Therefore, 178 // The WebFrame that owns this object and manages its lifetime. Therefore,
180 // the web frame object is guaranteed to exist. 179 // the web frame object is guaranteed to exist.
181 WebLocalFrameImpl* m_webFrame; 180 WebLocalFrameImpl* m_webFrame;
182 }; 181 };
183 182
184 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); 183 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr ameLoaderClientImpl(), client.isFrameLoaderClientImpl());
185 184
186 } // namespace blink 185 } // namespace blink
187 186
188 #endif 187 #endif
OLDNEW
« no previous file with comments | « Source/web/ExternalPopupMenu.h ('k') | Source/web/InspectorClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698