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 24 matching lines...) Expand all Loading... |
35 #include "ui/gfx/gpu_memory_buffer.h" | 35 #include "ui/gfx/gpu_memory_buffer.h" |
36 #include "ui/gl/gpu_switching_observer.h" | 36 #include "ui/gl/gpu_switching_observer.h" |
37 | 37 |
38 #if defined(OS_ANDROID) | 38 #if defined(OS_ANDROID) |
39 #include "content/public/browser/android/interface_registry_android.h" | 39 #include "content/public/browser/android/interface_registry_android.h" |
40 #endif | 40 #endif |
41 | 41 |
42 namespace base { | 42 namespace base { |
43 class CommandLine; | 43 class CommandLine; |
44 class MessageLoop; | 44 class MessageLoop; |
| 45 class SharedPersistentMemoryAllocator; |
45 } | 46 } |
46 | 47 |
47 namespace gfx { | 48 namespace gfx { |
48 class Size; | 49 class Size; |
49 } | 50 } |
50 | 51 |
51 namespace IPC { | 52 namespace IPC { |
52 class ChannelMojoHost; | 53 class ChannelMojoHost; |
53 } | 54 } |
54 | 55 |
(...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
567 instance_weak_factory_; | 568 instance_weak_factory_; |
568 | 569 |
569 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; | 570 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; |
570 | 571 |
571 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); | 572 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); |
572 }; | 573 }; |
573 | 574 |
574 } // namespace content | 575 } // namespace content |
575 | 576 |
576 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ | 577 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ |
OLD | NEW |