Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef PlatformMojoInterface_h | |
| 6 #define PlatformMojoInterface_h | |
| 7 | |
| 8 #include "public/platform/resource_hints.mojom-blink.h" | |
| 9 | |
| 10 namespace blink { | |
| 11 | |
| 12 class PlatformMojoInterface { | |
|
kinuko
2016/06/16 05:39:58
nit: PlatformMojoInterface's'... or maybe Platform
Charlie Harrison
2016/06/16 11:00:20
Done.
| |
| 13 public: | |
| 14 PlatformMojoInterface(); | |
| 15 | |
| 16 const mojom::blink::ResourceHintsHandlerPtr& resourceHintsHandlerHost(); | |
|
kinuko
2016/06/16 05:39:58
nit: why we add suffix 'Host' here? Just resourceH
Charlie Harrison
2016/06/16 11:00:20
Done.
| |
| 17 | |
| 18 private: | |
| 19 mojom::blink::ResourceHintsHandlerPtr m_resourceHintsHandlerHost; | |
| 20 }; | |
| 21 | |
| 22 } // namespace blink | |
| 23 | |
| 24 #endif // PlatformMojoInterface_h | |
| OLD | NEW |