| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include "content/shell/shell_content_client.h" | 5 #include "content/shell/shell_content_client.h" |
| 6 | 6 |
| 7 #include "base/string_piece.h" | 7 #include "base/string_piece.h" |
| 8 #include "webkit/glue/user_agent.h" | 8 #include "webkit/glue/user_agent.h" |
| 9 | 9 |
| 10 namespace content { | 10 namespace content { |
| 11 | 11 |
| 12 ShellContentClient::~ShellContentClient() { | 12 ShellContentClient::~ShellContentClient() { |
| 13 } | 13 } |
| 14 | 14 |
| 15 void ShellContentClient::SetActiveURL(const GURL& url) { | 15 void ShellContentClient::SetActiveURL(const GURL& url) { |
| 16 } | 16 } |
| 17 | 17 |
| 18 void ShellContentClient::SetGpuInfo(const GPUInfo& gpu_info) { | 18 void ShellContentClient::SetGpuInfo(const GPUInfo& gpu_info) { |
| 19 } | 19 } |
| 20 | 20 |
| 21 void ShellContentClient::AddPepperPlugins( | 21 void ShellContentClient::AddPepperPlugins( |
| 22 std::vector<content::PepperPluginInfo>* plugins) { | 22 std::vector<content::PepperPluginInfo>* plugins) { |
| 23 } | 23 } |
| 24 | 24 |
| 25 void ShellContentClient::AddNPAPIPlugins( |
| 26 webkit::npapi::PluginList* plugin_list) { |
| 27 } |
| 28 |
| 25 bool ShellContentClient::CanSendWhileSwappedOut(const IPC::Message* msg) { | 29 bool ShellContentClient::CanSendWhileSwappedOut(const IPC::Message* msg) { |
| 26 return false; | 30 return false; |
| 27 } | 31 } |
| 28 | 32 |
| 29 bool ShellContentClient::CanHandleWhileSwappedOut(const IPC::Message& msg) { | 33 bool ShellContentClient::CanHandleWhileSwappedOut(const IPC::Message& msg) { |
| 30 return false; | 34 return false; |
| 31 } | 35 } |
| 32 | 36 |
| 33 std::string ShellContentClient::GetUserAgent(bool* overriding) const { | 37 std::string ShellContentClient::GetUserAgent(bool* overriding) const { |
| 34 *overriding = false; | 38 *overriding = false; |
| 35 return std::string("Chrome/15.16.17.18"); | 39 return std::string("Chrome/15.16.17.18"); |
| 36 } | 40 } |
| 37 | 41 |
| 38 string16 ShellContentClient::GetLocalizedString(int message_id) const { | 42 string16 ShellContentClient::GetLocalizedString(int message_id) const { |
| 39 return string16(); | 43 return string16(); |
| 40 } | 44 } |
| 41 | 45 |
| 42 base::StringPiece ShellContentClient::GetDataResource(int resource_id) const { | 46 base::StringPiece ShellContentClient::GetDataResource(int resource_id) const { |
| 43 return base::StringPiece(); | 47 return base::StringPiece(); |
| 44 } | 48 } |
| 45 | 49 |
| 46 #if defined(OS_WIN) | 50 #if defined(OS_WIN) |
| 47 bool ShellContentClient::SandboxPlugin(CommandLine* command_line, | 51 bool ShellContentClient::SandboxPlugin(CommandLine* command_line, |
| 48 sandbox::TargetPolicy* policy) { | 52 sandbox::TargetPolicy* policy) { |
| 49 return false; | 53 return false; |
| 50 } | 54 } |
| 51 #endif | 55 #endif |
| 52 | 56 |
| 53 } // namespace content | 57 } // namespace content |
| OLD | NEW |