| 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 #include "content/test/test_content_client.h" | 5 #include "content/test/test_content_client.h" |
| 6 | 6 |
| 7 #include "base/base_paths.h" | 7 #include "base/base_paths.h" |
| 8 #include "base/file_path.h" | 8 #include "base/file_path.h" |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 | 37 |
| 38 bool TestContentClient::HasWebUIScheme(const GURL& url) const { | 38 bool TestContentClient::HasWebUIScheme(const GURL& url) const { |
| 39 return false; | 39 return false; |
| 40 } | 40 } |
| 41 | 41 |
| 42 bool TestContentClient::CanHandleWhileSwappedOut(const IPC::Message& msg) { | 42 bool TestContentClient::CanHandleWhileSwappedOut(const IPC::Message& msg) { |
| 43 // TestContentClient does not need to handle any additional messages. | 43 // TestContentClient does not need to handle any additional messages. |
| 44 return false; | 44 return false; |
| 45 } | 45 } |
| 46 | 46 |
| 47 std::string TestContentClient::GetUserAgent(bool* overriding) const { | 47 std::string TestContentClient::GetUserAgent() const { |
| 48 *overriding = false; | |
| 49 return std::string("TestContentClient"); | 48 return std::string("TestContentClient"); |
| 50 } | 49 } |
| 51 | 50 |
| 52 string16 TestContentClient::GetLocalizedString(int message_id) const { | 51 string16 TestContentClient::GetLocalizedString(int message_id) const { |
| 53 return string16(); | 52 return string16(); |
| 54 } | 53 } |
| 55 | 54 |
| 56 base::StringPiece TestContentClient::GetDataResource(int resource_id) const { | 55 base::StringPiece TestContentClient::GetDataResource(int resource_id) const { |
| 57 base::StringPiece resource; | 56 base::StringPiece resource; |
| 58 data_pack_.GetStringPiece(resource_id, &resource); | 57 data_pack_.GetStringPiece(resource_id, &resource); |
| 59 return resource; | 58 return resource; |
| 60 } | 59 } |
| 61 | 60 |
| 62 #if defined(OS_WIN) | 61 #if defined(OS_WIN) |
| 63 bool TestContentClient::SandboxPlugin(CommandLine* command_line, | 62 bool TestContentClient::SandboxPlugin(CommandLine* command_line, |
| 64 sandbox::TargetPolicy* policy) { | 63 sandbox::TargetPolicy* policy) { |
| 65 return false; | 64 return false; |
| 66 } | 65 } |
| 67 #endif | 66 #endif |
| 68 | 67 |
| 69 #if defined(OS_MACOSX) | 68 #if defined(OS_MACOSX) |
| 70 bool TestContentClient::GetSandboxProfileForSandboxType( | 69 bool TestContentClient::GetSandboxProfileForSandboxType( |
| 71 int sandbox_type, | 70 int sandbox_type, |
| 72 int* sandbox_profile_resource_id) const { | 71 int* sandbox_profile_resource_id) const { |
| 73 return false; | 72 return false; |
| 74 } | 73 } |
| 75 #endif | 74 #endif |
| OLD | NEW |