| 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 <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
| 14 #include "base/gtest_prod_util.h" |
| 14 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
| 15 #include "base/strings/string16.h" | 16 #include "base/strings/string16.h" |
| 16 #include "content/public/renderer/content_renderer_client.h" | 17 #include "content/public/renderer/content_renderer_client.h" |
| 17 #include "ipc/ipc_channel_proxy.h" | 18 #include "ipc/ipc_channel_proxy.h" |
| 18 #include "v8/include/v8.h" | 19 #include "v8/include/v8.h" |
| 19 | 20 |
| 20 class ChromeExtensionsDispatcherDelegate; | 21 class ChromeExtensionsDispatcherDelegate; |
| 21 class ChromeRenderProcessObserver; | 22 class ChromeRenderProcessObserver; |
| 22 #if defined(ENABLE_PRINT_PREVIEW) | 23 #if defined(ENABLE_PRINT_PREVIEW) |
| 23 class ChromePDFPrintClient; | 24 class ChromePDFPrintClient; |
| (...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 #if defined(ENABLE_PRINT_PREVIEW) | 251 #if defined(ENABLE_PRINT_PREVIEW) |
| 251 scoped_ptr<ChromePDFPrintClient> pdf_print_client_; | 252 scoped_ptr<ChromePDFPrintClient> pdf_print_client_; |
| 252 #endif | 253 #endif |
| 253 #if defined(ENABLE_PLUGINS) | 254 #if defined(ENABLE_PLUGINS) |
| 254 std::set<std::string> allowed_camera_device_origins_; | 255 std::set<std::string> allowed_camera_device_origins_; |
| 255 std::set<std::string> allowed_compositor_origins_; | 256 std::set<std::string> allowed_compositor_origins_; |
| 256 #endif | 257 #endif |
| 257 }; | 258 }; |
| 258 | 259 |
| 259 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ | 260 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ |
| OLD | NEW |