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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 } | 82 } |
83 | 83 |
84 std::string ContentClient::GetProduct() const { | 84 std::string ContentClient::GetProduct() const { |
85 return std::string(); | 85 return std::string(); |
86 } | 86 } |
87 | 87 |
88 std::string ContentClient::GetUserAgent() const { | 88 std::string ContentClient::GetUserAgent() const { |
89 return std::string(); | 89 return std::string(); |
90 } | 90 } |
91 | 91 |
92 string16 ContentClient::GetLocalizedString(int message_id) const { | 92 base::string16 ContentClient::GetLocalizedString(int message_id) const { |
93 return string16(); | 93 return base::string16(); |
94 } | 94 } |
95 | 95 |
96 base::StringPiece ContentClient::GetDataResource( | 96 base::StringPiece ContentClient::GetDataResource( |
97 int resource_id, | 97 int resource_id, |
98 ui::ScaleFactor scale_factor) const { | 98 ui::ScaleFactor scale_factor) const { |
99 return base::StringPiece(); | 99 return base::StringPiece(); |
100 } | 100 } |
101 | 101 |
102 base::RefCountedStaticMemory* ContentClient::GetDataResourceBytes( | 102 base::RefCountedStaticMemory* ContentClient::GetDataResourceBytes( |
103 int resource_id) const { | 103 int resource_id) const { |
(...skipping 16 matching lines...) Expand all Loading... |
120 int* sandbox_profile_resource_id) const { | 120 int* sandbox_profile_resource_id) const { |
121 return false; | 121 return false; |
122 } | 122 } |
123 | 123 |
124 std::string ContentClient::GetCarbonInterposePath() const { | 124 std::string ContentClient::GetCarbonInterposePath() const { |
125 return std::string(); | 125 return std::string(); |
126 } | 126 } |
127 #endif | 127 #endif |
128 | 128 |
129 } // namespace content | 129 } // namespace content |
OLD | NEW |