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

Side by Side Diff: third_party/WebKit/public/platform/Platform.h

Issue 2156803002: [HBD] Remove PluginCache and reload plugin list when origin changes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changes per dcheng@'s comment Created 4 years, 4 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 | « third_party/WebKit/Source/platform/plugins/PluginData.cpp ('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) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 virtual WebURLError cancelledError(const WebURL&) const { return WebURLError (); } 321 virtual WebURLError cancelledError(const WebURL&) const { return WebURLError (); }
322 322
323 // Returns true and stores the position of the end of the headers to |*end| 323 // Returns true and stores the position of the end of the headers to |*end|
324 // if the headers part ends in |bytes[0..size]|. Returns false otherwise. 324 // if the headers part ends in |bytes[0..size]|. Returns false otherwise.
325 virtual bool parseMultipartHeadersFromBody(const char* bytes, size_t /* size */, WebURLResponse*, size_t* end) const { return false; } 325 virtual bool parseMultipartHeadersFromBody(const char* bytes, size_t /* size */, WebURLResponse*, size_t* end) const { return false; }
326 326
327 // Plugins ------------------------------------------------------------- 327 // Plugins -------------------------------------------------------------
328 328
329 // If refresh is true, then cached information should not be used to 329 // If refresh is true, then cached information should not be used to
330 // satisfy this call. 330 // satisfy this call.
331 virtual void getPluginList(bool refresh, WebPluginListBuilder*) { } 331 virtual void getPluginList(bool refresh, const WebSecurityOrigin& mainFrameO rigin, WebPluginListBuilder*) {}
dcheng 2016/08/24 03:33:13 Nit: Let's document the |mainFrameOrigin| paramete
trizzofo 2016/08/24 23:34:12 Done.
332
333 332
334 // Public Suffix List -------------------------------------------------- 333 // Public Suffix List --------------------------------------------------
335 334
336 // May return null on some platforms. 335 // May return null on some platforms.
337 virtual WebPublicSuffixList* publicSuffixList() { return nullptr; } 336 virtual WebPublicSuffixList* publicSuffixList() { return nullptr; }
338 337
339 338
340 // Resources ----------------------------------------------------------- 339 // Resources -----------------------------------------------------------
341 340
342 // Returns a localized string resource (with substitution parameters). 341 // Returns a localized string resource (with substitution parameters).
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
593 protected: 592 protected:
594 Platform(); 593 Platform();
595 virtual ~Platform() { } 594 virtual ~Platform() { }
596 595
597 WebThread* m_mainThread; 596 WebThread* m_mainThread;
598 }; 597 };
599 598
600 } // namespace blink 599 } // namespace blink
601 600
602 #endif 601 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/plugins/PluginData.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698