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

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

Issue 16599010: Surface Chrome SVN Revision in dev tools 'version' command (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 months 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') | no next file » | 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « content/public/common/content_client.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698