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

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

Issue 1545153002: Switch to standard integer types in chrome/browser/ui/views/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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
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 "base/macros.h"
8 #include "ui/views/bubble/bubble_delegate.h" 9 #include "ui/views/bubble/bubble_delegate.h"
9 10
10 // A BubbleDelegateView implementation for form validation message bubble. 11 // A BubbleDelegateView implementation for form validation message bubble.
11 // This class is exposed for testing. 12 // This class is exposed for testing.
12 class ValidationMessageBubbleDelegate : public views::BubbleDelegateView { 13 class ValidationMessageBubbleDelegate : public views::BubbleDelegateView {
13 public: 14 public:
14 // An interface to observe the widget closing. 15 // An interface to observe the widget closing.
15 class Observer { 16 class Observer {
16 public: 17 public:
17 virtual void WindowClosing() = 0; 18 virtual void WindowClosing() = 0;
(...skipping 21 matching lines...) Expand all
39 40
40 private: 41 private:
41 Observer* observer_; 42 Observer* observer_;
42 int width_; 43 int width_;
43 int height_; 44 int height_;
44 45
45 DISALLOW_COPY_AND_ASSIGN(ValidationMessageBubbleDelegate); 46 DISALLOW_COPY_AND_ASSIGN(ValidationMessageBubbleDelegate);
46 }; 47 };
47 48
48 #endif // CHROME_BROWSER_UI_VIEWS_VALIDATION_MESSAGE_BUBBLE_DELEGATE_H_ 49 #endif // CHROME_BROWSER_UI_VIEWS_VALIDATION_MESSAGE_BUBBLE_DELEGATE_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/update_recommended_message_box.cc ('k') | chrome/browser/ui/views/validation_message_bubble_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698