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

Side by Side Diff: chrome/browser/utility_process_host.h

Issue 5741001: Even more virtual method deinlining. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase (windows) Created 10 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 CHROME_BROWSER_UTILITY_PROCESS_HOST_H_ 5 #ifndef CHROME_BROWSER_UTILITY_PROCESS_HOST_H_
6 #define CHROME_BROWSER_UTILITY_PROCESS_HOST_H_ 6 #define CHROME_BROWSER_UTILITY_PROCESS_HOST_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 private: 147 private:
148 // Starts a process if necessary. Returns true if it succeeded or a process 148 // Starts a process if necessary. Returns true if it succeeded or a process
149 // has already been started via StartBatchMode(). 149 // has already been started via StartBatchMode().
150 bool StartProcess(const FilePath& exposed_dir); 150 bool StartProcess(const FilePath& exposed_dir);
151 151
152 // IPC messages: 152 // IPC messages:
153 virtual void OnMessageReceived(const IPC::Message& message); 153 virtual void OnMessageReceived(const IPC::Message& message);
154 154
155 // BrowserChildProcessHost: 155 // BrowserChildProcessHost:
156 virtual void OnProcessCrashed(); 156 virtual void OnProcessCrashed();
157 virtual bool CanShutdown() { return true; } 157 virtual bool CanShutdown();
158 virtual URLRequestContext* GetRequestContext( 158 virtual URLRequestContext* GetRequestContext(
159 uint32 request_id, 159 uint32 request_id,
160 const ViewHostMsg_Resource_Request& request_data) { 160 const ViewHostMsg_Resource_Request& request_data);
161 return NULL;
162 }
163 161
164 // A pointer to our client interface, who will be informed of progress. 162 // A pointer to our client interface, who will be informed of progress.
165 scoped_refptr<Client> client_; 163 scoped_refptr<Client> client_;
166 BrowserThread::ID client_thread_id_; 164 BrowserThread::ID client_thread_id_;
167 // True when running in batch mode, i.e., StartBatchMode() has been called 165 // True when running in batch mode, i.e., StartBatchMode() has been called
168 // and the utility process will run until EndBatchMode(). 166 // and the utility process will run until EndBatchMode().
169 bool is_batch_mode_; 167 bool is_batch_mode_;
170 168
171 DISALLOW_COPY_AND_ASSIGN(UtilityProcessHost); 169 DISALLOW_COPY_AND_ASSIGN(UtilityProcessHost);
172 }; 170 };
173 171
174 #endif // CHROME_BROWSER_UTILITY_PROCESS_HOST_H_ 172 #endif // CHROME_BROWSER_UTILITY_PROCESS_HOST_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/app_modal_dialogs/app_modal_dialog.cc ('k') | chrome/browser/utility_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698