| 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
 | 
| 
 |