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

Unified Diff: base/file_version_info_mac.h

Issue 1647803004: Move base to DEPS (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/file_version_info.h ('k') | base/file_version_info_mac.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/file_version_info_mac.h
diff --git a/base/file_version_info_mac.h b/base/file_version_info_mac.h
deleted file mode 100644
index e67783834df60741f31a6d68470f223de961a033..0000000000000000000000000000000000000000
--- a/base/file_version_info_mac.h
+++ /dev/null
@@ -1,50 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef BASE_FILE_VERSION_INFO_MAC_H_
-#define BASE_FILE_VERSION_INFO_MAC_H_
-
-#include <CoreFoundation/CoreFoundation.h>
-#include <string>
-
-#include "base/file_version_info.h"
-#include "base/mac/scoped_nsobject.h"
-
-@class NSBundle;
-
-class FileVersionInfoMac : public FileVersionInfo {
- public:
- explicit FileVersionInfoMac(NSBundle *bundle);
- ~FileVersionInfoMac() override;
-
- // Accessors to the different version properties.
- // Returns an empty string if the property is not found.
- base::string16 company_name() override;
- base::string16 company_short_name() override;
- base::string16 product_name() override;
- base::string16 product_short_name() override;
- base::string16 internal_name() override;
- base::string16 product_version() override;
- base::string16 private_build() override;
- base::string16 special_build() override;
- base::string16 comments() override;
- base::string16 original_filename() override;
- base::string16 file_description() override;
- base::string16 file_version() override;
- base::string16 legal_copyright() override;
- base::string16 legal_trademarks() override;
- base::string16 last_change() override;
- bool is_official_build() override;
-
- private:
- // Returns a base::string16 value for a property name.
- // Returns the empty string if the property does not exist.
- base::string16 GetString16Value(CFStringRef name);
-
- base::scoped_nsobject<NSBundle> bundle_;
-
- DISALLOW_COPY_AND_ASSIGN(FileVersionInfoMac);
-};
-
-#endif // BASE_FILE_VERSION_INFO_MAC_H_
« no previous file with comments | « base/file_version_info.h ('k') | base/file_version_info_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698