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 #include "components/contextual_search/renderer/overlay_page_notifier_service_im
pl.h" |
| 6 |
| 7 #include "components/contextual_search/renderer/overlay_js_render_frame_observer
.h" |
| 8 |
| 9 namespace contextual_search { |
| 10 |
| 11 OverlayPageNotifierServiceImpl::OverlayPageNotifierServiceImpl( |
| 12 OverlayJsRenderFrameObserver* observer, |
| 13 mojo::InterfaceRequest<OverlayPageNotifierService> request) |
| 14 : binding_(this, request.Pass()), overlay_js_observer_(observer) {} |
| 15 |
| 16 OverlayPageNotifierServiceImpl::~OverlayPageNotifierServiceImpl() {} |
| 17 |
| 18 void OverlayPageNotifierServiceImpl::NotifyIsContextualSearchOverlay() { |
| 19 overlay_js_observer_->SetIsContextualSearchOverlay(); |
| 20 } |
| 21 |
| 22 } // namespace contextual_search |
OLD | NEW |