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

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

Issue 1447563002: Implement frame attribution (FrameBlamer) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review comments. Created 4 years, 9 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
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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 SharedWorkerRepositoryClient* sharedWorkerRepositoryClient() override; 175 SharedWorkerRepositoryClient* sharedWorkerRepositoryClient() override;
176 176
177 PassOwnPtr<WebApplicationCacheHost> createApplicationCacheHost(WebApplicatio nCacheHostClient*) override; 177 PassOwnPtr<WebApplicationCacheHost> createApplicationCacheHost(WebApplicatio nCacheHostClient*) override;
178 178
179 void dispatchDidChangeManifest() override; 179 void dispatchDidChangeManifest() override;
180 180
181 unsigned backForwardLength() override; 181 unsigned backForwardLength() override;
182 182
183 void suddenTerminationDisablerChanged(bool present, SuddenTerminationDisable rType) override; 183 void suddenTerminationDisablerChanged(bool present, SuddenTerminationDisable rType) override;
184 184
185 BlameContext* frameBlameContext() override;
186
185 private: 187 private:
186 explicit FrameLoaderClientImpl(WebLocalFrameImpl*); 188 explicit FrameLoaderClientImpl(WebLocalFrameImpl*);
187 189
188 bool isFrameLoaderClientImpl() const override { return true; } 190 bool isFrameLoaderClientImpl() const override { return true; }
189 191
190 // The WebFrame that owns this object and manages its lifetime. Therefore, 192 // The WebFrame that owns this object and manages its lifetime. Therefore,
191 // the web frame object is guaranteed to exist. 193 // the web frame object is guaranteed to exist.
192 RawPtrWillBeMember<WebLocalFrameImpl> m_webFrame; 194 RawPtrWillBeMember<WebLocalFrameImpl> m_webFrame;
193 }; 195 };
194 196
195 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); 197 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr ameLoaderClientImpl(), client.isFrameLoaderClientImpl());
196 198
197 } // namespace blink 199 } // namespace blink
198 200
199 #endif 201 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698