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

Side by Side Diff: base/file_version_info_linux.cc

Issue 42155: Remove logging.h from cc files that don't use it. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 9 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 | « base/file_util_linux.cc ('k') | base/gfx/rect_unittest.cc » ('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) 2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2008 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 "base/file_version_info.h" 5 #include "base/file_version_info.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/logging.h"
10
11 // TODO(port): This whole file is stubbed. We can't return NULL 9 // TODO(port): This whole file is stubbed. We can't return NULL
12 // because that is used as a catastrophic error code where the file 10 // because that is used as a catastrophic error code where the file
13 // doesn't exist or can't be opened. 11 // doesn't exist or can't be opened.
14 // 12 //
15 // See http://code.google.com/p/chromium/issues/detail?id=8132 for a discussion 13 // See http://code.google.com/p/chromium/issues/detail?id=8132 for a discussion
16 // on what we should do with this module. 14 // on what we should do with this module.
17 15
18 FileVersionInfo::FileVersionInfo() {} 16 FileVersionInfo::FileVersionInfo() {}
19 17
20 FileVersionInfo::~FileVersionInfo() {} 18 FileVersionInfo::~FileVersionInfo() {}
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 return L""; 78 return L"";
81 } 79 }
82 80
83 std::wstring FileVersionInfo::last_change() { 81 std::wstring FileVersionInfo::last_change() {
84 return L"Last Thursday"; 82 return L"Last Thursday";
85 } 83 }
86 84
87 bool FileVersionInfo::is_official_build() { 85 bool FileVersionInfo::is_official_build() {
88 return false; 86 return false;
89 } 87 }
OLDNEW
« no previous file with comments | « base/file_util_linux.cc ('k') | base/gfx/rect_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698