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 InstallationServiceImpl_h |
| 6 #define InstallationServiceImpl_h |
| 7 |
| 8 #include "modules/ModulesExport.h" |
| 9 #include "public/platform/modules/installation/installation.mojom-blink.h" |
| 10 |
| 11 namespace blink { |
| 12 |
| 13 class LocalFrame; |
| 14 |
| 15 class MODULES_EXPORT InstallationServiceImpl final |
| 16 : public mojom::blink::InstallationService { |
| 17 public: |
| 18 explicit InstallationServiceImpl(LocalFrame*); |
| 19 |
| 20 static void create(LocalFrame*, mojom::blink::InstallationServiceRequest); |
| 21 |
| 22 void OnInstall() override; |
| 23 |
| 24 private: |
| 25 LocalFrame* m_frame; |
| 26 }; |
| 27 |
| 28 } // namespace blink |
| 29 |
| 30 #endif // InstallationServiceImpl_h |
OLD | NEW |