| 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_CONTENT_RENDERER_CLIENT_H_ | 5 #ifndef CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ |
| 6 #define CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ | 6 #define CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 9 |
| 8 #include <map> | 10 #include <map> |
| 9 #include <set> | 11 #include <set> |
| 10 #include <string> | 12 #include <string> |
| 11 #include <vector> | 13 #include <vector> |
| 12 | 14 |
| 13 #include "base/compiler_specific.h" | 15 #include "base/compiler_specific.h" |
| 14 #include "base/gtest_prod_util.h" | 16 #include "base/gtest_prod_util.h" |
| 15 #include "base/memory/scoped_ptr.h" | 17 #include "base/memory/scoped_ptr.h" |
| 16 #include "base/strings/string16.h" | 18 #include "base/strings/string16.h" |
| 17 #include "content/public/renderer/content_renderer_client.h" | 19 #include "content/public/renderer/content_renderer_client.h" |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 #if defined(ENABLE_PRINT_PREVIEW) | 215 #if defined(ENABLE_PRINT_PREVIEW) |
| 214 scoped_ptr<ChromePDFPrintClient> pdf_print_client_; | 216 scoped_ptr<ChromePDFPrintClient> pdf_print_client_; |
| 215 #endif | 217 #endif |
| 216 #if defined(ENABLE_PLUGINS) | 218 #if defined(ENABLE_PLUGINS) |
| 217 std::set<std::string> allowed_camera_device_origins_; | 219 std::set<std::string> allowed_camera_device_origins_; |
| 218 std::set<std::string> allowed_compositor_origins_; | 220 std::set<std::string> allowed_compositor_origins_; |
| 219 #endif | 221 #endif |
| 220 }; | 222 }; |
| 221 | 223 |
| 222 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ | 224 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ |
| OLD | NEW |