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

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

Issue 6576020: Remove Gears from Chrome (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: windows fixes Created 9 years, 9 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
« no previous file with comments | « content/browser/worker_host/worker_process_host.cc ('k') | content/common/child_thread.cc » ('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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_COMMON_CHILD_THREAD_H_ 5 #ifndef CONTENT_COMMON_CHILD_THREAD_H_
6 #define CONTENT_COMMON_CHILD_THREAD_H_ 6 #define CONTENT_COMMON_CHILD_THREAD_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/scoped_ptr.h" 10 #include "base/scoped_ptr.h"
(...skipping 26 matching lines...) Expand all
37 37
38 // See documentation on MessageRouter for AddRoute and RemoveRoute 38 // See documentation on MessageRouter for AddRoute and RemoveRoute
39 void AddRoute(int32 routing_id, IPC::Channel::Listener* listener); 39 void AddRoute(int32 routing_id, IPC::Channel::Listener* listener);
40 void RemoveRoute(int32 routing_id); 40 void RemoveRoute(int32 routing_id);
41 41
42 IPC::Channel::Listener* ResolveRoute(int32 routing_id); 42 IPC::Channel::Listener* ResolveRoute(int32 routing_id);
43 43
44 // Creates a ResourceLoaderBridge. 44 // Creates a ResourceLoaderBridge.
45 // Tests can override this method if they want a custom loading behavior. 45 // Tests can override this method if they want a custom loading behavior.
46 virtual webkit_glue::ResourceLoaderBridge* CreateBridge( 46 virtual webkit_glue::ResourceLoaderBridge* CreateBridge(
47 const webkit_glue::ResourceLoaderBridge::RequestInfo& request_info, 47 const webkit_glue::ResourceLoaderBridge::RequestInfo& request_info);
48 int host_renderer_id,
49 int host_render_view_id);
50 48
51 ResourceDispatcher* resource_dispatcher(); 49 ResourceDispatcher* resource_dispatcher();
52 50
53 SocketStreamDispatcher* socket_stream_dispatcher() { 51 SocketStreamDispatcher* socket_stream_dispatcher() {
54 return socket_stream_dispatcher_.get(); 52 return socket_stream_dispatcher_.get();
55 } 53 }
56 54
57 FileSystemDispatcher* file_system_dispatcher() const { 55 FileSystemDispatcher* file_system_dispatcher() const {
58 return file_system_dispatcher_.get(); 56 return file_system_dispatcher_.get();
59 } 57 }
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 MessageLoop* message_loop_; 119 MessageLoop* message_loop_;
122 120
123 scoped_ptr<NotificationService> notification_service_; 121 scoped_ptr<NotificationService> notification_service_;
124 122
125 scoped_ptr<FileSystemDispatcher> file_system_dispatcher_; 123 scoped_ptr<FileSystemDispatcher> file_system_dispatcher_;
126 124
127 DISALLOW_COPY_AND_ASSIGN(ChildThread); 125 DISALLOW_COPY_AND_ASSIGN(ChildThread);
128 }; 126 };
129 127
130 #endif // CONTENT_COMMON_CHILD_THREAD_H_ 128 #endif // CONTENT_COMMON_CHILD_THREAD_H_
OLDNEW
« no previous file with comments | « content/browser/worker_host/worker_process_host.cc ('k') | content/common/child_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698