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 "ui/gfx/image/image.h" | 9 #include "ui/gfx/image/image.h" |
10 #include "webkit/common/user_agent/user_agent.h" | 10 #include "webkit/common/user_agent/user_agent.h" |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 } | 80 } |
81 | 81 |
82 bool ContentClient::CanHandleWhileSwappedOut(const IPC::Message& message) { | 82 bool ContentClient::CanHandleWhileSwappedOut(const IPC::Message& message) { |
83 return false; | 83 return false; |
84 } | 84 } |
85 | 85 |
86 std::string ContentClient::GetProduct() const { | 86 std::string ContentClient::GetProduct() const { |
87 return std::string(); | 87 return std::string(); |
88 } | 88 } |
89 | 89 |
| 90 std::string ContentClient::GetProductSCMRevision() const { |
| 91 return std::string(); |
| 92 } |
| 93 |
90 std::string ContentClient::GetUserAgent() const { | 94 std::string ContentClient::GetUserAgent() const { |
91 return std::string(); | 95 return std::string(); |
92 } | 96 } |
93 | 97 |
94 string16 ContentClient::GetLocalizedString(int message_id) const { | 98 string16 ContentClient::GetLocalizedString(int message_id) const { |
95 return string16(); | 99 return string16(); |
96 } | 100 } |
97 | 101 |
98 base::StringPiece ContentClient::GetDataResource( | 102 base::StringPiece ContentClient::GetDataResource( |
99 int resource_id, | 103 int resource_id, |
(...skipping 22 matching lines...) Expand all Loading... |
122 int* sandbox_profile_resource_id) const { | 126 int* sandbox_profile_resource_id) const { |
123 return false; | 127 return false; |
124 } | 128 } |
125 | 129 |
126 std::string ContentClient::GetCarbonInterposePath() const { | 130 std::string ContentClient::GetCarbonInterposePath() const { |
127 return std::string(); | 131 return std::string(); |
128 } | 132 } |
129 #endif | 133 #endif |
130 | 134 |
131 } // namespace content | 135 } // namespace content |
OLD | NEW |