OLD | NEW |
| (Empty) |
1 // Copyright 2015 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 COMPONENTS_DOM_DISTILLER_CONTENT_RENDERER_DISTILLER_PAGE_NOTIFIER_SERVIC
E_IMPL_H_ | |
6 #define COMPONENTS_DOM_DISTILLER_CONTENT_RENDERER_DISTILLER_PAGE_NOTIFIER_SERVIC
E_IMPL_H_ | |
7 | |
8 #include "components/dom_distiller/content/common/distiller_page_notifier_servic
e.mojom.h" | |
9 #include "components/dom_distiller/content/renderer/distiller_js_render_frame_ob
server.h" | |
10 #include "components/dom_distiller/content/renderer/distiller_native_javascript.
h" | |
11 #include "third_party/mojo/src/mojo/public/cpp/bindings/strong_binding.h" | |
12 | |
13 namespace dom_distiller { | |
14 | |
15 class DistillerJsRenderFrameObserver; | |
16 | |
17 // DistillerPageNotifierService is responsible for listening to the browser for | |
18 // messages about if a page is a distiller page. No message is received if the | |
19 // page is not a distiller page. This service should be removed from the | |
20 // registry once the page is done loading. | |
21 class DistillerPageNotifierServiceImpl : public DistillerPageNotifierService { | |
22 public: | |
23 explicit DistillerPageNotifierServiceImpl( | |
24 DistillerJsRenderFrameObserver* observer, | |
25 mojo::InterfaceRequest<DistillerPageNotifierService> request); | |
26 ~DistillerPageNotifierServiceImpl() override; | |
27 | |
28 // Implementation of mojo interface DistillerPageNotifierService. | |
29 void NotifyIsDistillerPage() override; | |
30 | |
31 private: | |
32 mojo::StrongBinding<DistillerPageNotifierService> binding_; | |
33 DistillerJsRenderFrameObserver* distiller_js_observer_; | |
34 }; | |
35 | |
36 } // namespace dom_distiller | |
37 | |
38 #endif // COMPONENTS_DOM_DISTILLER_CONTENT_RENDERER_DISTILLER_PAGE_NOTIFIER_SER
VICE_IMPL_H_ | |
OLD | NEW |