| Index: ui/base/resource/resource_bundle.h
|
| diff --git a/ui/base/resource/resource_bundle.h b/ui/base/resource/resource_bundle.h
|
| index d1aa0cf7e7a63a9d391a15f95ef2831100115c87..23b566515c1f452b0694bfd2ada8196d07796bd8 100644
|
| --- a/ui/base/resource/resource_bundle.h
|
| +++ b/ui/base/resource/resource_bundle.h
|
| @@ -26,7 +26,9 @@
|
| #include "ui/gfx/native_widget_types.h"
|
|
|
| class SkBitmap;
|
| -typedef uint32 SkColor;
|
| +// Don't use uint32 or uint32_t here because Eclipse's indexer gets confused.
|
| +// This can be removed when the static colors are moved to ThemeProvider.
|
| +typedef unsigned int SkColor;
|
|
|
| namespace base {
|
| class Lock;
|
|
|