Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(93)

Side by Side Diff: content/public/common/content_client.cc

Issue 102593002: Convert string16 to base::string16 in content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/public/common/content_client.h ('k') | content/public/common/context_menu_params.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « content/public/common/content_client.h ('k') | content/public/common/context_menu_params.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698