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

Side by Side Diff: third_party/WebKit/Source/modules/installation/InstallationServiceImpl.h

Issue 2379923002: Implement "appinstalled" event on Android. (Closed)
Patch Set: Blink style. Created 4 years 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 unified diff | Download patch
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698