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

Side by Side Diff: content/child/geofencing/geofencing_message_filter.cc

Issue 1972733002: Delete geofencing implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: mark histogram suffix as obsolete Created 4 years, 7 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
OLDNEW
(Empty)
1 // Copyright 2014 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 "content/child/geofencing/geofencing_message_filter.h"
6
7 #include "content/child/geofencing/geofencing_dispatcher.h"
8 #include "ipc/ipc_message_macros.h"
9
10 namespace content {
11
12 GeofencingMessageFilter::GeofencingMessageFilter(ThreadSafeSender* sender)
13 : WorkerThreadMessageFilter(sender) {
14 }
15
16 GeofencingMessageFilter::~GeofencingMessageFilter() {
17 }
18
19 bool GeofencingMessageFilter::ShouldHandleMessage(
20 const IPC::Message& msg) const {
21 return IPC_MESSAGE_CLASS(msg) == GeofencingMsgStart;
22 }
23
24 void GeofencingMessageFilter::OnFilteredMessageReceived(
25 const IPC::Message& msg) {
26 GeofencingDispatcher::GetOrCreateThreadSpecificInstance(thread_safe_sender())
27 ->OnMessageReceived(msg);
28 }
29
30 bool GeofencingMessageFilter::GetWorkerThreadIdForMessage(
31 const IPC::Message& msg,
32 int* ipc_thread_id) {
33 return base::PickleIterator(msg).ReadInt(ipc_thread_id);
34 }
35
36 } // namespace content
OLDNEW
« no previous file with comments | « content/child/geofencing/geofencing_message_filter.h ('k') | content/child/geofencing/web_geofencing_provider_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698