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

Side by Side Diff: components/contextual_search/renderer/overlay_page_notifier_service_impl.cc

Issue 1385663002: [Contextual Search] Add Mojo-enabled API component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added a few more missing dependencies to the new component's BUILD.gn rules for our renderer sectio… Created 5 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
« no previous file with comments | « components/contextual_search/renderer/overlay_page_notifier_service_impl.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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
OLDNEW
« no previous file with comments | « components/contextual_search/renderer/overlay_page_notifier_service_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698