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_PLUGIN_PROCESS_HOST_H_ | 5 #ifndef CONTENT_BROWSER_PLUGIN_PROCESS_HOST_H_ |
6 #define CONTENT_BROWSER_PLUGIN_PROCESS_HOST_H_ | 6 #define CONTENT_BROWSER_PLUGIN_PROCESS_HOST_H_ |
7 #pragma once | |
8 | 7 |
9 #include "build/build_config.h" | 8 #include "build/build_config.h" |
10 | 9 |
11 #include <list> | 10 #include <list> |
12 #include <set> | 11 #include <set> |
13 #include <string> | 12 #include <string> |
14 #include <vector> | 13 #include <vector> |
15 | 14 |
16 #include "base/basictypes.h" | 15 #include "base/basictypes.h" |
17 #include "base/compiler_specific.h" | 16 #include "base/compiler_specific.h" |
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 | 186 |
188 class PluginProcessHostIterator | 187 class PluginProcessHostIterator |
189 : public content::BrowserChildProcessHostTypeIterator<PluginProcessHost> { | 188 : public content::BrowserChildProcessHostTypeIterator<PluginProcessHost> { |
190 public: | 189 public: |
191 PluginProcessHostIterator() | 190 PluginProcessHostIterator() |
192 : content::BrowserChildProcessHostTypeIterator<PluginProcessHost>( | 191 : content::BrowserChildProcessHostTypeIterator<PluginProcessHost>( |
193 content::PROCESS_TYPE_PLUGIN) {} | 192 content::PROCESS_TYPE_PLUGIN) {} |
194 }; | 193 }; |
195 | 194 |
196 #endif // CONTENT_BROWSER_PLUGIN_PROCESS_HOST_H_ | 195 #endif // CONTENT_BROWSER_PLUGIN_PROCESS_HOST_H_ |
OLD | NEW |