| 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 511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 522 | 522 |
| 523 #if defined(OS_ANDROID) | 523 #if defined(OS_ANDROID) |
| 524 // UI thread is the source of sync IPCs and all shutdown signals. | 524 // UI thread is the source of sync IPCs and all shutdown signals. |
| 525 // Therefore a proper shutdown event to unblock the UI thread is not | 525 // Therefore a proper shutdown event to unblock the UI thread is not |
| 526 // possible without massive refactoring shutdown code. | 526 // possible without massive refactoring shutdown code. |
| 527 // Luckily Android never performs a clean shutdown. So explicitly | 527 // Luckily Android never performs a clean shutdown. So explicitly |
| 528 // ignore this problem. | 528 // ignore this problem. |
| 529 base::WaitableEvent never_signaled_; | 529 base::WaitableEvent never_signaled_; |
| 530 #endif | 530 #endif |
| 531 | 531 |
| 532 std::string channel_token_; |
| 533 |
| 532 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; | 534 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; |
| 533 | 535 |
| 534 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); | 536 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); |
| 535 }; | 537 }; |
| 536 | 538 |
| 537 } // namespace content | 539 } // namespace content |
| 538 | 540 |
| 539 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ | 541 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ |
| OLD | NEW |