| Index: chrome/browser/ui/dialog_style.h
|
| diff --git a/chrome/browser/ui/dialog_style.h b/chrome/browser/ui/dialog_style.h
|
| index fd9774ee9da6a9f463b116bbe76fb6cd2cec194e..a1699a17e305927cacd6453579e3722cbe75a3fd 100644
|
| --- a/chrome/browser/ui/dialog_style.h
|
| +++ b/chrome/browser/ui/dialog_style.h
|
| @@ -14,21 +14,11 @@ enum DialogStyle {
|
| STYLE_GENERIC = 0,
|
|
|
| #if defined(OS_CHROMEOS)
|
| - // Show close button at the top right (left for RTL).
|
| - // Deprecated, see BubbleWindow::Create().
|
| - // TODO(bshe): We probably need to use this style for certificate viewer
|
| - // HTML dialog.
|
| - STYLE_XBAR = 1 << 0,
|
| -
|
| - // Show throbber for slow rendering.
|
| - // Deprecated, see BubbleWindow::Create().
|
| - STYLE_THROBBER = 1 << 1,
|
| -
|
| // Content and title flush to edge, no padding.
|
| - STYLE_FLUSH = 1 << 2,
|
| + STYLE_FLUSH = 1 << 0,
|
|
|
| // Content flush to edge. Padding only on title.
|
| - STYLE_FLUSH_CONTENT = 1 << 3
|
| + STYLE_FLUSH_CONTENT = 1 << 1
|
| #endif
|
|
|
| };
|
|
|