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

Unified Diff: third_party/WebKit/Source/platform/PlatformMojoServices.h

Issue 2043753002: Declarative resource hints go through mojo IPC to //content Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove gmocking + add another browser test Created 4 years, 6 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: third_party/WebKit/Source/platform/PlatformMojoServices.h
diff --git a/third_party/WebKit/Source/platform/PlatformMojoServices.h b/third_party/WebKit/Source/platform/PlatformMojoServices.h
new file mode 100644
index 0000000000000000000000000000000000000000..00dfa72e9f75648ca77e5d3ee38c8b74e3a25f64
--- /dev/null
+++ b/third_party/WebKit/Source/platform/PlatformMojoServices.h
@@ -0,0 +1,24 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef PlatformMojoServices_h
+#define PlatformMojoServices_h
+
+#include "public/platform/resource_hints.mojom-blink.h"
+
+namespace blink {
+
+class PlatformMojoServices {
+public:
+ PlatformMojoServices();
+
+ const mojom::blink::ResourceHintsHandlerPtr& resourceHintsHandler();
+
+private:
+ mojom::blink::ResourceHintsHandlerPtr m_resourceHintsHandler;
+};
+
+} // namespace blink
+
+#endif // PlatformMojoServices_h

Powered by Google App Engine
This is Rietveld 408576698