| OLD | NEW |
| 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_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 void GetAudioOutputControllers( | 260 void GetAudioOutputControllers( |
| 261 const GetAudioOutputControllersCallback& callback) const override; | 261 const GetAudioOutputControllersCallback& callback) const override; |
| 262 | 262 |
| 263 BluetoothDispatcherHost* GetBluetoothDispatcherHost(); | 263 BluetoothDispatcherHost* GetBluetoothDispatcherHost(); |
| 264 | 264 |
| 265 #if defined(OS_POSIX) && !defined(OS_ANDROID) && !defined(OS_MACOSX) | 265 #if defined(OS_POSIX) && !defined(OS_ANDROID) && !defined(OS_MACOSX) |
| 266 // Launch the zygote early in the browser startup. | 266 // Launch the zygote early in the browser startup. |
| 267 static void EarlyZygoteLaunch(); | 267 static void EarlyZygoteLaunch(); |
| 268 #endif // defined(OS_POSIX) && !defined(OS_ANDROID) && !defined(OS_MACOSX) | 268 #endif // defined(OS_POSIX) && !defined(OS_ANDROID) && !defined(OS_MACOSX) |
| 269 | 269 |
| 270 void RecomputeAndUpdateWebKitPreferences(); |
| 271 |
| 270 protected: | 272 protected: |
| 271 // A proxy for our IPC::Channel that lives on the IO thread. | 273 // A proxy for our IPC::Channel that lives on the IO thread. |
| 272 scoped_ptr<IPC::ChannelProxy> channel_; | 274 scoped_ptr<IPC::ChannelProxy> channel_; |
| 273 | 275 |
| 274 // True if fast shutdown has been performed on this RPH. | 276 // True if fast shutdown has been performed on this RPH. |
| 275 bool fast_shutdown_started_; | 277 bool fast_shutdown_started_; |
| 276 | 278 |
| 277 // True if we've posted a DeleteTask and will be deleted soon. | 279 // True if we've posted a DeleteTask and will be deleted soon. |
| 278 bool deleting_soon_; | 280 bool deleting_soon_; |
| 279 | 281 |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 511 #endif | 513 #endif |
| 512 | 514 |
| 513 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; | 515 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; |
| 514 | 516 |
| 515 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); | 517 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); |
| 516 }; | 518 }; |
| 517 | 519 |
| 518 } // namespace content | 520 } // namespace content |
| 519 | 521 |
| 520 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ | 522 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ |
| OLD | NEW |