| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_RENDERER_RENDER_PROCESS_H__ | 5 #ifndef CHROME_RENDERER_RENDER_PROCESS_H__ |
| 6 #define CHROME_RENDERER_RENDER_PROCESS_H__ | 6 #define CHROME_RENDERER_RENDER_PROCESS_H__ |
| 7 | 7 |
| 8 #include <objidl.h> |
| 9 #include <mlang.h> |
| 10 |
| 8 #include "base/shared_memory.h" | 11 #include "base/shared_memory.h" |
| 9 #include "chrome/common/child_process.h" | 12 #include "chrome/common/child_process.h" |
| 10 #include "chrome/renderer/render_thread.h" | 13 #include "chrome/renderer/render_thread.h" |
| 11 | 14 |
| 12 class RenderView; | 15 class RenderView; |
| 13 | 16 |
| 14 // Represents the renderer end of the browser<->renderer connection. The | 17 // Represents the renderer end of the browser<->renderer connection. The |
| 15 // opposite end is the RenderProcessHost. This is a singleton object for | 18 // opposite end is the RenderProcessHost. This is a singleton object for |
| 16 // each renderer. | 19 // each renderer. |
| 17 class RenderProcess : public ChildProcess { | 20 class RenderProcess : public ChildProcess { |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 // This factory is used to lazily invoke ClearSharedMemCache. | 81 // This factory is used to lazily invoke ClearSharedMemCache. |
| 79 ScopedRunnableMethodFactory<RenderProcess> clearer_factory_; | 82 ScopedRunnableMethodFactory<RenderProcess> clearer_factory_; |
| 80 | 83 |
| 81 static bool load_plugins_in_process_; | 84 static bool load_plugins_in_process_; |
| 82 | 85 |
| 83 DISALLOW_EVIL_CONSTRUCTORS(RenderProcess); | 86 DISALLOW_EVIL_CONSTRUCTORS(RenderProcess); |
| 84 }; | 87 }; |
| 85 | 88 |
| 86 #endif // CHROME_RENDERER_RENDER_PROCESS_H__ | 89 #endif // CHROME_RENDERER_RENDER_PROCESS_H__ |
| 87 | 90 |
| OLD | NEW |