Index: chrome/browser/chromeos/version_loader.h |
=================================================================== |
--- chrome/browser/chromeos/version_loader.h (revision 88450) |
+++ chrome/browser/chromeos/version_loader.h (working copy) |
@@ -59,12 +59,6 @@ |
Handle GetFirmware(CancelableRequestConsumerBase* consumer, |
GetFirmwareCallback* callback); |
- // Parse the version information as a Chrome platfrom, not Chrome OS |
- // TODO(rkc): Change this and everywhere it is used once we switch Chrome OS |
- // over to xx.yyy.zz version numbers instead of 0.xx.yyy.zz |
- // Refer to http://code.google.com/p/chromium-os/issues/detail?id=15789 |
- void EnablePlatformVersions(bool enable); |
- |
static const char kFullVersionPrefix[]; |
static const char kVersionPrefix[]; |
static const char kFirmwarePrefix[]; |
@@ -78,7 +72,7 @@ |
// and extract the version. |
class Backend : public base::RefCountedThreadSafe<Backend> { |
public: |
- Backend() : parse_as_platform_(false) {} |
+ Backend() {} |
// Calls ParseVersion to get the version # and notifies request. |
// This is invoked on the file thread. |
@@ -90,13 +84,9 @@ |
// This is invoked on the file thread. |
void GetFirmware(scoped_refptr<GetFirmwareRequest> request); |
- void set_parse_as_platform(bool value) { parse_as_platform_ = value; } |
- |
private: |
friend class base::RefCountedThreadSafe<Backend>; |
- bool parse_as_platform_; |
- |
~Backend() {} |
DISALLOW_COPY_AND_ASSIGN(Backend); |