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 CHROME_RENDERER_CHROME_RENDER_PROCESS_OBSERVER_H_ | 5 #ifndef CHROME_RENDERER_CHROME_RENDER_PROCESS_OBSERVER_H_ |
6 #define CHROME_RENDERER_CHROME_RENDER_PROCESS_OBSERVER_H_ | 6 #define CHROME_RENDERER_CHROME_RENDER_PROCESS_OBSERVER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "chrome/common/content_settings.h" | 13 #include "components/content_settings/core/common/content_settings.h" |
14 #include "content/public/renderer/render_process_observer.h" | 14 #include "content/public/renderer/render_process_observer.h" |
15 | 15 |
16 class ChromeContentRendererClient; | 16 class ChromeContentRendererClient; |
17 class GURL; | 17 class GURL; |
18 struct ContentSettings; | 18 struct ContentSettings; |
19 | 19 |
20 namespace content { | 20 namespace content { |
21 class ResourceDispatcherDelegate; | 21 class ResourceDispatcherDelegate; |
22 } | 22 } |
23 | 23 |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 | 71 |
72 bool webkit_initialized_; | 72 bool webkit_initialized_; |
73 size_t pending_cache_min_dead_capacity_; | 73 size_t pending_cache_min_dead_capacity_; |
74 size_t pending_cache_max_dead_capacity_; | 74 size_t pending_cache_max_dead_capacity_; |
75 size_t pending_cache_capacity_; | 75 size_t pending_cache_capacity_; |
76 | 76 |
77 DISALLOW_COPY_AND_ASSIGN(ChromeRenderProcessObserver); | 77 DISALLOW_COPY_AND_ASSIGN(ChromeRenderProcessObserver); |
78 }; | 78 }; |
79 | 79 |
80 #endif // CHROME_RENDERER_CHROME_RENDER_PROCESS_OBSERVER_H_ | 80 #endif // CHROME_RENDERER_CHROME_RENDER_PROCESS_OBSERVER_H_ |
OLD | NEW |