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

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

Issue 2566893003: Move frameBlameContext() accessor to FrameLoaderClient. (Closed)
Patch Set: Created 4 years 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 | « third_party/WebKit/Source/core/frame/FrameClient.h ('k') | no next file » | 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 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
3 * reserved. 3 * reserved.
4 * Copyright (C) 2012 Google Inc. All rights reserved. 4 * Copyright (C) 2012 Google Inc. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
9 * 9 *
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 } 335 }
336 336
337 // Effective connection type when this frame was loaded. 337 // Effective connection type when this frame was loaded.
338 virtual WebEffectiveConnectionType getEffectiveConnectionType() { 338 virtual WebEffectiveConnectionType getEffectiveConnectionType() {
339 return WebEffectiveConnectionType::TypeUnknown; 339 return WebEffectiveConnectionType::TypeUnknown;
340 } 340 }
341 341
342 // Overwrites the given URL to use an HTML5 embed if possible. An empty URL is 342 // Overwrites the given URL to use an HTML5 embed if possible. An empty URL is
343 // returned if the URL is not overriden. 343 // returned if the URL is not overriden.
344 virtual KURL overrideFlashEmbedWithHTML(const KURL&) { return KURL(); } 344 virtual KURL overrideFlashEmbedWithHTML(const KURL&) { return KURL(); }
345
346 virtual BlameContext* frameBlameContext() { return nullptr; }
345 }; 347 };
346 348
347 } // namespace blink 349 } // namespace blink
348 350
349 #endif // FrameLoaderClient_h 351 #endif // FrameLoaderClient_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/frame/FrameClient.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698