| 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_COMMON_CHROME_CONTENT_CLIENT_H_ | 5 #ifndef CHROME_COMMON_CHROME_CONTENT_CLIENT_H_ |
| 6 #define CHROME_COMMON_CHROME_CONTENT_CLIENT_H_ | 6 #define CHROME_COMMON_CHROME_CONTENT_CLIENT_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
| 13 #include "content/public/common/content_client.h" | 13 #include "content/public/common/content_client.h" |
| 14 | 14 |
| 15 #if defined(ENABLE_PLUGINS) | 15 #if defined(ENABLE_PLUGINS) |
| 16 #include "content/public/common/pepper_plugin_info.h" | 16 #include "content/public/common/pepper_plugin_info.h" |
| 17 #endif | 17 #endif |
| 18 | 18 |
| 19 // Returns the user agent of Chrome. | 19 // Returns the user agent of Chrome. |
| 20 std::string GetUserAgent(); | 20 std::string GetUserAgent(); |
| 21 | 21 |
| 22 class ChromeContentClient : public content::ContentClient { | 22 class ChromeContentClient : public content::ContentClient { |
| 23 public: | 23 public: |
| 24 static const char* const kPDFPluginName; | 24 static const char kPDFPluginName[]; |
| 25 static const char* const kPDFPluginPath; | 25 static const char kPDFPluginPath[]; |
| 26 static const char* const kRemotingViewerPluginPath; | 26 static const char kRemotingViewerPluginPath[]; |
| 27 | 27 |
| 28 // The methods below are called by child processes to set the function | 28 // The methods below are called by child processes to set the function |
| 29 // pointers for built-in plugins. We avoid linking these plugins into | 29 // pointers for built-in plugins. We avoid linking these plugins into |
| 30 // chrome_common because then on Windows we would ship them twice because of | 30 // chrome_common because then on Windows we would ship them twice because of |
| 31 // the split DLL. | 31 // the split DLL. |
| 32 #if defined(ENABLE_REMOTING) | 32 #if defined(ENABLE_REMOTING) |
| 33 static void SetRemotingEntryFunctions( | 33 static void SetRemotingEntryFunctions( |
| 34 content::PepperPluginInfo::GetInterfaceFunc get_interface, | 34 content::PepperPluginInfo::GetInterfaceFunc get_interface, |
| 35 content::PepperPluginInfo::PPP_InitializeModuleFunc initialize_module, | 35 content::PepperPluginInfo::PPP_InitializeModuleFunc initialize_module, |
| 36 content::PepperPluginInfo::PPP_ShutdownModuleFunc shutdown_module); | 36 content::PepperPluginInfo::PPP_ShutdownModuleFunc shutdown_module); |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 std::string GetProcessTypeNameInEnglish(int type) override; | 68 std::string GetProcessTypeNameInEnglish(int type) override; |
| 69 | 69 |
| 70 #if defined(OS_MACOSX) && !defined(OS_IOS) | 70 #if defined(OS_MACOSX) && !defined(OS_IOS) |
| 71 bool GetSandboxProfileForSandboxType( | 71 bool GetSandboxProfileForSandboxType( |
| 72 int sandbox_type, | 72 int sandbox_type, |
| 73 int* sandbox_profile_resource_id) const override; | 73 int* sandbox_profile_resource_id) const override; |
| 74 #endif | 74 #endif |
| 75 }; | 75 }; |
| 76 | 76 |
| 77 #endif // CHROME_COMMON_CHROME_CONTENT_CLIENT_H_ | 77 #endif // CHROME_COMMON_CHROME_CONTENT_CLIENT_H_ |
| OLD | NEW |