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/public/common/content_client.h" | 5 #include "content/public/common/content_client.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "base/strings/string_piece.h" | 8 #include "base/strings/string_piece.h" |
9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
10 #include "content/public/common/origin_util.h" | 10 #include "content/public/common/origin_util.h" |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 } | 71 } |
72 | 72 |
73 bool ContentClient::CanSendWhileSwappedOut(const IPC::Message* message) { | 73 bool ContentClient::CanSendWhileSwappedOut(const IPC::Message* message) { |
74 return false; | 74 return false; |
75 } | 75 } |
76 | 76 |
77 std::string ContentClient::GetProduct() const { | 77 std::string ContentClient::GetProduct() const { |
78 return std::string(); | 78 return std::string(); |
79 } | 79 } |
80 | 80 |
| 81 std::string ContentClient::GetLastChange() const { |
| 82 return std::string(); |
| 83 } |
| 84 |
| 85 std::string ContentClient::GetV8Version() const { |
| 86 return std::string(); |
| 87 } |
| 88 |
81 std::string ContentClient::GetUserAgent() const { | 89 std::string ContentClient::GetUserAgent() const { |
82 return std::string(); | 90 return std::string(); |
83 } | 91 } |
84 | 92 |
85 base::string16 ContentClient::GetLocalizedString(int message_id) const { | 93 base::string16 ContentClient::GetLocalizedString(int message_id) const { |
86 return base::string16(); | 94 return base::string16(); |
87 } | 95 } |
88 | 96 |
89 base::StringPiece ContentClient::GetDataResource( | 97 base::StringPiece ContentClient::GetDataResource( |
90 int resource_id, | 98 int resource_id, |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 bool ContentClient::UsingSynchronousCompositing() { | 140 bool ContentClient::UsingSynchronousCompositing() { |
133 return false; | 141 return false; |
134 } | 142 } |
135 | 143 |
136 media::MediaClientAndroid* ContentClient::GetMediaClientAndroid() { | 144 media::MediaClientAndroid* ContentClient::GetMediaClientAndroid() { |
137 return nullptr; | 145 return nullptr; |
138 } | 146 } |
139 #endif // OS_ANDROID | 147 #endif // OS_ANDROID |
140 | 148 |
141 } // namespace content | 149 } // namespace content |
OLD | NEW |