| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |