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/test/test_content_client.h" | 5 #include "content/test/test_content_client.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "base/string_piece.h" | 8 #include "base/string_piece.h" |
9 | 9 |
10 TestContentClient::TestContentClient() { | 10 TestContentClient::TestContentClient() { |
(...skipping 13 matching lines...) Expand all Loading... |
24 } | 24 } |
25 | 25 |
26 bool TestContentClient::CanSendWhileSwappedOut(const IPC::Message* msg) { | 26 bool TestContentClient::CanSendWhileSwappedOut(const IPC::Message* msg) { |
27 return true; | 27 return true; |
28 } | 28 } |
29 | 29 |
30 bool TestContentClient::CanHandleWhileSwappedOut(const IPC::Message& msg) { | 30 bool TestContentClient::CanHandleWhileSwappedOut(const IPC::Message& msg) { |
31 return true; | 31 return true; |
32 } | 32 } |
33 | 33 |
34 std::string TestContentClient::GetUserAgent(bool mimic_windows) const { | 34 std::string TestContentClient::GetUserAgent(bool* overriding) const { |
35 return std::string(); | 35 *overriding = false; |
| 36 return std::string("TestContentClient"); |
36 } | 37 } |
37 | 38 |
38 string16 TestContentClient::GetLocalizedString(int message_id) const { | 39 string16 TestContentClient::GetLocalizedString(int message_id) const { |
39 return string16(); | 40 return string16(); |
40 } | 41 } |
41 | 42 |
42 base::StringPiece TestContentClient::GetDataResource(int resource_id) const { | 43 base::StringPiece TestContentClient::GetDataResource(int resource_id) const { |
43 return base::StringPiece(); | 44 return base::StringPiece(); |
44 } | 45 } |
45 | 46 |
46 #if defined(OS_WIN) | 47 #if defined(OS_WIN) |
47 bool TestContentClient::SandboxPlugin(CommandLine* command_line, | 48 bool TestContentClient::SandboxPlugin(CommandLine* command_line, |
48 sandbox::TargetPolicy* policy) { | 49 sandbox::TargetPolicy* policy) { |
49 return false; | 50 return false; |
50 } | 51 } |
51 #endif | 52 #endif |
OLD | NEW |