| 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 "content/public/common/content_client.h" | 12 #include "content/public/common/content_client.h" |
| 13 | 13 |
| 14 namespace chrome { | 14 namespace chrome { |
| 15 | 15 |
| 16 class ChromeContentClient : public content::ContentClient { | 16 class ChromeContentClient : public content::ContentClient { |
| 17 public: | 17 public: |
| 18 static const char* const kPDFPluginName; | 18 static const char* const kPDFPluginName; |
| 19 static const char* const kNaClPluginName; | 19 static const char* const kNaClPluginName; |
| 20 static const char* const kNaClOldPluginName; | 20 static const char* const kNaClOldPluginName; |
| 21 | 21 |
| 22 // This is what the ContentClient::GetProduct implementation calls. | |
| 23 static std::string GetProductImpl(); | |
| 24 | |
| 25 virtual void SetActiveURL(const GURL& url) OVERRIDE; | 22 virtual void SetActiveURL(const GURL& url) OVERRIDE; |
| 26 virtual void SetGpuInfo(const gpu::GPUInfo& gpu_info) OVERRIDE; | 23 virtual void SetGpuInfo(const gpu::GPUInfo& gpu_info) OVERRIDE; |
| 27 virtual void AddPepperPlugins( | 24 virtual void AddPepperPlugins( |
| 28 std::vector<content::PepperPluginInfo>* plugins) OVERRIDE; | 25 std::vector<content::PepperPluginInfo>* plugins) OVERRIDE; |
| 29 virtual void AddNPAPIPlugins( | 26 virtual void AddNPAPIPlugins( |
| 30 webkit::npapi::PluginList* plugin_list) OVERRIDE; | 27 webkit::npapi::PluginList* plugin_list) OVERRIDE; |
| 31 virtual void AddAdditionalSchemes( | 28 virtual void AddAdditionalSchemes( |
| 32 std::vector<std::string>* standard_schemes, | 29 std::vector<std::string>* standard_schemes, |
| 33 std::vector<std::string>* saveable_shemes) OVERRIDE; | 30 std::vector<std::string>* saveable_shemes) OVERRIDE; |
| 34 virtual bool CanHandleWhileSwappedOut(const IPC::Message& msg) OVERRIDE; | 31 virtual bool CanHandleWhileSwappedOut(const IPC::Message& msg) OVERRIDE; |
| (...skipping 12 matching lines...) Expand all Loading... |
| 47 virtual bool GetSandboxProfileForSandboxType( | 44 virtual bool GetSandboxProfileForSandboxType( |
| 48 int sandbox_type, | 45 int sandbox_type, |
| 49 int* sandbox_profile_resource_id) const OVERRIDE; | 46 int* sandbox_profile_resource_id) const OVERRIDE; |
| 50 virtual std::string GetCarbonInterposePath() const OVERRIDE; | 47 virtual std::string GetCarbonInterposePath() const OVERRIDE; |
| 51 #endif | 48 #endif |
| 52 }; | 49 }; |
| 53 | 50 |
| 54 } // namespace chrome | 51 } // namespace chrome |
| 55 | 52 |
| 56 #endif // CHROME_COMMON_CHROME_CONTENT_CLIENT_H_ | 53 #endif // CHROME_COMMON_CHROME_CONTENT_CLIENT_H_ |
| OLD | NEW |