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

Unified Diff: chrome/browser/chromeos/frame/bubble_window_views.h

Issue 8469006: Promote bubble_window_style to more general dialog_style. (Closed) Base URL: /usr/local/google/home/bshe/NoTouchChromium/../TouchChromium/src/@trunk
Patch Set: Add comments. Created 9 years, 1 month 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
Index: chrome/browser/chromeos/frame/bubble_window_views.h
diff --git a/chrome/browser/chromeos/frame/bubble_window_views.h b/chrome/browser/chromeos/frame/bubble_window_views.h
index 15ba5d3c3a4979aac156e01257703449e163602b..01d1e3718eaeeff039d199ad68f70d2353a4a1a1 100644
--- a/chrome/browser/chromeos/frame/bubble_window_views.h
+++ b/chrome/browser/chromeos/frame/bubble_window_views.h
@@ -6,7 +6,7 @@
#define CHROME_BROWSER_CHROMEOS_FRAME_BUBBLE_WINDOW_VIEWS_H_
#pragma once
-#include "chrome/browser/chromeos/frame/bubble_window_style.h"
+#include "chrome/browser/ui/dialog_style.h"
#include "third_party/skia/include/core/SkColor.h"
#include "views/widget/widget.h"
@@ -22,12 +22,12 @@ class BubbleWindowViews : public views::Widget {
void SetBackgroundColor();
protected:
- explicit BubbleWindowViews(BubbleWindowStyle style);
+ explicit BubbleWindowViews(DialogStyle style);
virtual views::NonClientFrameView* CreateNonClientFrameView() OVERRIDE;
private:
friend class BubbleWindow;
- BubbleWindowStyle style_;
+ DialogStyle style_;
DISALLOW_COPY_AND_ASSIGN(BubbleWindowViews);
};

Powered by Google App Engine
This is Rietveld 408576698