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

Side by Side Diff: chrome/browser/ui/views/validation_message_bubble_delegate.h

Issue 273223002: views: Make view::Views::GetPreferredSize() const. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More compile fix for ToT Created 6 years, 7 months 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_VIEWS_VALIDATION_MESSAGE_BUBBLE_DELEGATE_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_VALIDATION_MESSAGE_BUBBLE_DELEGATE_H_
6 #define CHROME_BROWSER_UI_VIEWS_VALIDATION_MESSAGE_BUBBLE_DELEGATE_H_ 6 #define CHROME_BROWSER_UI_VIEWS_VALIDATION_MESSAGE_BUBBLE_DELEGATE_H_
7 7
8 #include "ui/views/bubble/bubble_delegate.h" 8 #include "ui/views/bubble/bubble_delegate.h"
9 9
10 // A BubbleDelegateView implementation for form validation message bubble. 10 // A BubbleDelegateView implementation for form validation message bubble.
(...skipping 15 matching lines...) Expand all
26 ValidationMessageBubbleDelegate(const gfx::Rect& anchor_in_screen, 26 ValidationMessageBubbleDelegate(const gfx::Rect& anchor_in_screen,
27 const base::string16& main_text, 27 const base::string16& main_text,
28 const base::string16& sub_text, 28 const base::string16& sub_text,
29 Observer* observer); 29 Observer* observer);
30 virtual ~ValidationMessageBubbleDelegate(); 30 virtual ~ValidationMessageBubbleDelegate();
31 31
32 void Close(); 32 void Close();
33 void SetPositionRelativeToAnchor(const gfx::Rect& anchor_in_screen); 33 void SetPositionRelativeToAnchor(const gfx::Rect& anchor_in_screen);
34 34
35 // BubbleDelegateView overrides: 35 // BubbleDelegateView overrides:
36 virtual gfx::Size GetPreferredSize() OVERRIDE; 36 virtual gfx::Size GetPreferredSize() const OVERRIDE;
37 virtual void DeleteDelegate() OVERRIDE; 37 virtual void DeleteDelegate() OVERRIDE;
38 virtual void WindowClosing() OVERRIDE; 38 virtual void WindowClosing() OVERRIDE;
39 39
40 private: 40 private:
41 Observer* observer_; 41 Observer* observer_;
42 int width_; 42 int width_;
43 int height_; 43 int height_;
44 44
45 DISALLOW_COPY_AND_ASSIGN(ValidationMessageBubbleDelegate); 45 DISALLOW_COPY_AND_ASSIGN(ValidationMessageBubbleDelegate);
46 }; 46 };
47 47
48 #endif // CHROME_BROWSER_UI_VIEWS_VALIDATION_MESSAGE_BUBBLE_DELEGATE_H_ 48 #endif // CHROME_BROWSER_UI_VIEWS_VALIDATION_MESSAGE_BUBBLE_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698