| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef COMPONENTS_CONTEXTUAL_SEARCH_RENDERER_OVERLAY_JS_RENDER_FRAME_OBSERVER_H
_ | 5 #ifndef COMPONENTS_CONTEXTUAL_SEARCH_RENDERER_OVERLAY_JS_RENDER_FRAME_OBSERVER_H
_ |
| 6 #define COMPONENTS_CONTEXTUAL_SEARCH_RENDERER_OVERLAY_JS_RENDER_FRAME_OBSERVER_H
_ | 6 #define COMPONENTS_CONTEXTUAL_SEARCH_RENDERER_OVERLAY_JS_RENDER_FRAME_OBSERVER_H
_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
| 10 #include "components/contextual_search/common/overlay_page_notifier_service.mojo
m.h" | 10 #include "components/contextual_search/common/overlay_page_notifier_service.mojo
m.h" |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 void DidClearWindowObject() override; | 29 void DidClearWindowObject() override; |
| 30 void DidFinishLoad() override; | 30 void DidFinishLoad() override; |
| 31 | 31 |
| 32 // Flag the current page as a contextual search overlay. | 32 // Flag the current page as a contextual search overlay. |
| 33 void SetIsContextualSearchOverlay(); | 33 void SetIsContextualSearchOverlay(); |
| 34 | 34 |
| 35 private: | 35 private: |
| 36 // RenderFrameObserver implementation. | 36 // RenderFrameObserver implementation. |
| 37 void OnDestruct() override; | 37 void OnDestruct() override; |
| 38 | 38 |
| 39 // Add the mojo interface to a RenderFrame's shell::InterfaceRegistry. | 39 // Add the mojo interface to a RenderFrame's |
| 40 // service_manager::InterfaceRegistry. |
| 40 void RegisterMojoInterface(); | 41 void RegisterMojoInterface(); |
| 41 // Creates the OverlayPageNotifierService connecting the browser to this | 42 // Creates the OverlayPageNotifierService connecting the browser to this |
| 42 // observer. | 43 // observer. |
| 43 void CreateOverlayPageNotifierService( | 44 void CreateOverlayPageNotifierService( |
| 44 mojo::InterfaceRequest<mojom::OverlayPageNotifierService> request); | 45 mojo::InterfaceRequest<mojom::OverlayPageNotifierService> request); |
| 45 // Destroys the OverlayPageNotifierService. | 46 // Destroys the OverlayPageNotifierService. |
| 46 void DestroyOverlayPageNotifierService(); | 47 void DestroyOverlayPageNotifierService(); |
| 47 | 48 |
| 48 // Track if the current page is presented in the contextual search overlay. | 49 // Track if the current page is presented in the contextual search overlay. |
| 49 bool is_contextual_search_overlay_; | 50 bool is_contextual_search_overlay_; |
| 50 | 51 |
| 51 base::WeakPtrFactory<OverlayJsRenderFrameObserver> weak_factory_; | 52 base::WeakPtrFactory<OverlayJsRenderFrameObserver> weak_factory_; |
| 52 | 53 |
| 53 DISALLOW_COPY_AND_ASSIGN(OverlayJsRenderFrameObserver); | 54 DISALLOW_COPY_AND_ASSIGN(OverlayJsRenderFrameObserver); |
| 54 }; | 55 }; |
| 55 | 56 |
| 56 } // namespace contextual_search | 57 } // namespace contextual_search |
| 57 | 58 |
| 58 #endif // COMPONENTS_CONTEXTUAL_SEARCH_RENDERER_OVERLAY_JS_RENDER_FRAME_OBSERVE
R_H_ | 59 #endif // COMPONENTS_CONTEXTUAL_SEARCH_RENDERER_OVERLAY_JS_RENDER_FRAME_OBSERVE
R_H_ |
| OLD | NEW |