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

Side by Side Diff: chrome/browser/ui/views/autofill/autofill_popup_view_views.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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_AUTOFILL_AUTOFILL_POPUP_VIEW_VIEWS_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_AUTOFILL_AUTOFILL_POPUP_VIEW_VIEWS_H_
6 #define CHROME_BROWSER_UI_VIEWS_AUTOFILL_AUTOFILL_POPUP_VIEW_VIEWS_H_ 6 #define CHROME_BROWSER_UI_VIEWS_AUTOFILL_AUTOFILL_POPUP_VIEW_VIEWS_H_
7 7
8 #include <stddef.h>
9
10 #include "base/macros.h"
8 #include "chrome/browser/ui/autofill/autofill_popup_view.h" 11 #include "chrome/browser/ui/autofill/autofill_popup_view.h"
9 #include "chrome/browser/ui/views/autofill/autofill_popup_base_view.h" 12 #include "chrome/browser/ui/views/autofill/autofill_popup_base_view.h"
10 13
11 class AutofillPopupController; 14 class AutofillPopupController;
12 15
13 namespace autofill { 16 namespace autofill {
14 17
15 // Views toolkit implementation for AutofillPopupView. 18 // Views toolkit implementation for AutofillPopupView.
16 class AutofillPopupViewViews : public AutofillPopupBaseView, 19 class AutofillPopupViewViews : public AutofillPopupBaseView,
17 public AutofillPopupView { 20 public AutofillPopupView {
(...skipping 19 matching lines...) Expand all
37 const gfx::Rect& entry_rect); 40 const gfx::Rect& entry_rect);
38 41
39 AutofillPopupController* controller_; // Weak reference. 42 AutofillPopupController* controller_; // Weak reference.
40 43
41 DISALLOW_COPY_AND_ASSIGN(AutofillPopupViewViews); 44 DISALLOW_COPY_AND_ASSIGN(AutofillPopupViewViews);
42 }; 45 };
43 46
44 } // namespace autofill 47 } // namespace autofill
45 48
46 #endif // CHROME_BROWSER_UI_VIEWS_AUTOFILL_AUTOFILL_POPUP_VIEW_VIEWS_H_ 49 #endif // CHROME_BROWSER_UI_VIEWS_AUTOFILL_AUTOFILL_POPUP_VIEW_VIEWS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698