| Index: chrome/browser/cocoa/keystone_glue.h
|
| diff --git a/chrome/browser/cocoa/keystone_glue.h b/chrome/browser/cocoa/keystone_glue.h
|
| index 28486813061100a7a08a8b56ac88ddb1f622182c..eaf84e522e7219d0060419c82c782969b8493166 100644
|
| --- a/chrome/browser/cocoa/keystone_glue.h
|
| +++ b/chrome/browser/cocoa/keystone_glue.h
|
| @@ -39,17 +39,18 @@ enum AutoupdateStatus {
|
| // value as an intValue at key kAutoupdateStatusStatus. If a version is
|
| // available (see AutoupdateStatus), it will be present at key
|
| // kAutoupdateStatusVersion.
|
| -extern const NSString* const kAutoupdateStatusNotification;
|
| -extern const NSString* const kAutoupdateStatusStatus;
|
| -extern const NSString* const kAutoupdateStatusVersion;
|
| +extern NSString* const kAutoupdateStatusNotification;
|
| +extern NSString* const kAutoupdateStatusStatus;
|
| +extern NSString* const kAutoupdateStatusVersion;
|
|
|
| namespace {
|
| - enum BrandFileType {
|
| - kBrandFileTypeNotDetermined = 0,
|
| - kBrandFileTypeNone,
|
| - kBrandFileTypeUser,
|
| - kBrandFileTypeSystem,
|
| - };
|
| +
|
| +enum BrandFileType {
|
| + kBrandFileTypeNotDetermined = 0,
|
| + kBrandFileTypeNone,
|
| + kBrandFileTypeUser,
|
| + kBrandFileTypeSystem,
|
| +};
|
|
|
| } // namespace
|
|
|
|
|