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

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

Issue 14627004: Re-implement form validation message UI with native widgets (Views) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address review comments Created 7 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_UI_VIEWS_VALIDATION_MESSAGE_BUBBLE_DELEGATE_H_
6 #define CHROME_BROWSER_UI_VIEWS_VALIDATION_MESSAGE_BUBBLE_DELEGATE_H_
7
8 #include "ui/views/bubble/bubble_delegate.h"
9
10 // A BubbleDelegateView implementation for form validation message bubble.
11 // This class is exposed for testing.
12 class ValidationMessageBubbleDelegate : public views::BubbleDelegateView {
13 public:
14 ValidationMessageBubbleDelegate(const gfx::Rect& anchor_in_screen,
15 const string16& main_text,
16 const string16& sub_text);
17 virtual ~ValidationMessageBubbleDelegate();
18
19 // BubbleDelegateView overrides:
20 virtual gfx::Size GetPreferredSize() OVERRIDE;
21 virtual void DeleteDelegate() OVERRIDE;
22
23 private:
24 int width_;
25 int height_;
26
27 DISALLOW_COPY_AND_ASSIGN(ValidationMessageBubbleDelegate);
28 };
29
30 #endif // CHROME_BROWSER_UI_VIEWS_VALIDATION_MESSAGE_BUBBLE_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698