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

Unified Diff: components/web_cache/renderer/web_cache_impl.h

Issue 2851173004: Eliminate bind callback that doesn't take a BindSourceInfo parameter. (Closed)
Patch Set: . Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: components/web_cache/renderer/web_cache_impl.h
diff --git a/components/web_cache/renderer/web_cache_impl.h b/components/web_cache/renderer/web_cache_impl.h
index 4a8a44f08c259996a74044087847d8a5b46f96d8..5697cebe913c98717bd936e99d95073233566de2 100644
--- a/components/web_cache/renderer/web_cache_impl.h
+++ b/components/web_cache/renderer/web_cache_impl.h
@@ -13,6 +13,10 @@
#include "components/web_cache/public/interfaces/web_cache.mojom.h"
#include "mojo/public/cpp/bindings/binding_set.h"
+namespace service_manager {
+struct BindSourceInfo;
+}
+
namespace web_cache {
// This class implements the Mojo interface mojom::WebCache.
@@ -21,7 +25,8 @@ class WebCacheImpl : public mojom::WebCache {
WebCacheImpl();
~WebCacheImpl() override;
- void BindRequest(mojom::WebCacheRequest web_cache_request);
+ void BindRequest(const service_manager::BindSourceInfo& source_info,
+ mojom::WebCacheRequest web_cache_request);
// Needs to be called by RenderViews in case of navigations to execute
// any 'clear cache' commands that were delayed until the next navigation.
« no previous file with comments | « components/visitedlink/renderer/visitedlink_slave.cc ('k') | components/web_cache/renderer/web_cache_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698