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

Side by Side Diff: blimp/engine/app/blimp_content_browser_client.cc

Issue 2192683003: Revert of Reland: Geolocation: move from content/browser to device/ (patchset #2 id:20001 of https:… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2810
Patch Set: Created 4 years, 4 months 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 | « blimp/engine/DEPS ('k') | blimp/engine/feature/geolocation/blimp_location_provider.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 #include "blimp/engine/app/blimp_content_browser_client.h"
5 #include "blimp/engine/app/blimp_browser_main_parts.h" 6 #include "blimp/engine/app/blimp_browser_main_parts.h"
6 #include "blimp/engine/app/blimp_content_browser_client.h"
7 #include "blimp/engine/app/settings_manager.h" 7 #include "blimp/engine/app/settings_manager.h"
8 #include "blimp/engine/mojo/blob_channel_service.h" 8 #include "blimp/engine/mojo/blob_channel_service.h"
9 #include "services/shell/public/cpp/interface_registry.h" 9 #include "services/shell/public/cpp/interface_registry.h"
10 10
11 namespace blimp { 11 namespace blimp {
12 namespace engine { 12 namespace engine {
13 13
14 BlimpContentBrowserClient::BlimpContentBrowserClient() {} 14 BlimpContentBrowserClient::BlimpContentBrowserClient() {}
15 15
16 BlimpContentBrowserClient::~BlimpContentBrowserClient() {} 16 BlimpContentBrowserClient::~BlimpContentBrowserClient() {}
(...skipping 25 matching lines...) Expand all
42 void BlimpContentBrowserClient::ExposeInterfacesToRenderer( 42 void BlimpContentBrowserClient::ExposeInterfacesToRenderer(
43 shell::InterfaceRegistry* registry, 43 shell::InterfaceRegistry* registry,
44 content::RenderProcessHost* render_process_host) { 44 content::RenderProcessHost* render_process_host) {
45 registry->AddInterface<mojom::BlobChannel>( 45 registry->AddInterface<mojom::BlobChannel>(
46 base::Bind(&BlobChannelService::Create, 46 base::Bind(&BlobChannelService::Create,
47 blimp_browser_main_parts_->GetBlobChannelSender())); 47 blimp_browser_main_parts_->GetBlobChannelSender()));
48 } 48 }
49 49
50 } // namespace engine 50 } // namespace engine
51 } // namespace blimp 51 } // namespace blimp
OLDNEW
« no previous file with comments | « blimp/engine/DEPS ('k') | blimp/engine/feature/geolocation/blimp_location_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698