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

Side by Side Diff: content/child/child_thread.h

Issue 476293002: Pass through geofencing API calls to the browser process. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address more comments Created 6 years, 3 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 CONTENT_CHILD_CHILD_THREAD_H_ 5 #ifndef CONTENT_CHILD_CHILD_THREAD_H_
6 #define CONTENT_CHILD_CHILD_THREAD_H_ 6 #define CONTENT_CHILD_CHILD_THREAD_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 22 matching lines...) Expand all
33 33
34 namespace blink { 34 namespace blink {
35 class WebFrame; 35 class WebFrame;
36 } // namespace blink 36 } // namespace blink
37 37
38 namespace content { 38 namespace content {
39 class ChildHistogramMessageFilter; 39 class ChildHistogramMessageFilter;
40 class ChildResourceMessageFilter; 40 class ChildResourceMessageFilter;
41 class ChildSharedBitmapManager; 41 class ChildSharedBitmapManager;
42 class FileSystemDispatcher; 42 class FileSystemDispatcher;
43 class GeofencingMessageFilter;
43 class ServiceWorkerMessageFilter; 44 class ServiceWorkerMessageFilter;
44 class QuotaDispatcher; 45 class QuotaDispatcher;
45 class QuotaMessageFilter; 46 class QuotaMessageFilter;
46 class ResourceDispatcher; 47 class ResourceDispatcher;
47 class SocketStreamDispatcher; 48 class SocketStreamDispatcher;
48 class ThreadSafeSender; 49 class ThreadSafeSender;
49 class WebSocketDispatcher; 50 class WebSocketDispatcher;
50 struct RequestInfo; 51 struct RequestInfo;
51 52
52 // The main thread of a child process derives from this class. 53 // The main thread of a child process derives from this class.
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 scoped_ptr<ChildSharedBitmapManager> shared_bitmap_manager_; 243 scoped_ptr<ChildSharedBitmapManager> shared_bitmap_manager_;
243 244
244 base::WeakPtrFactory<ChildThread> channel_connected_factory_; 245 base::WeakPtrFactory<ChildThread> channel_connected_factory_;
245 246
246 // Observes the trace event system. When tracing is enabled, optionally 247 // Observes the trace event system. When tracing is enabled, optionally
247 // starts profiling the tcmalloc heap. 248 // starts profiling the tcmalloc heap.
248 scoped_ptr<base::debug::TraceMemoryController> trace_memory_controller_; 249 scoped_ptr<base::debug::TraceMemoryController> trace_memory_controller_;
249 250
250 scoped_ptr<base::PowerMonitor> power_monitor_; 251 scoped_ptr<base::PowerMonitor> power_monitor_;
251 252
253 scoped_refptr<GeofencingMessageFilter> geofencing_message_filter_;
254
252 bool in_browser_process_; 255 bool in_browser_process_;
253 256
254 DISALLOW_COPY_AND_ASSIGN(ChildThread); 257 DISALLOW_COPY_AND_ASSIGN(ChildThread);
255 }; 258 };
256 259
257 } // namespace content 260 } // namespace content
258 261
259 #endif // CONTENT_CHILD_CHILD_THREAD_H_ 262 #endif // CONTENT_CHILD_CHILD_THREAD_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698