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*); | |
dominickn
2016/12/09 06:08:18
This should be a reference, not a pointer.
Matt Giuca
2016/12/12 04:28:20
This goes against every fibre of my being. I know
dominickn
2016/12/12 05:03:30
AppBannerController::bindMojoRequest (aka your cre
Matt Giuca
2016/12/14 03:39:40
Done.
This is super weird then. create takes a po
| |
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 |