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

Side by Side Diff: chrome/browser/ui/views/link_disambiguation/link_disambiguation_popup.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) 2014 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2014 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_LINK_DISAMBIGUATION_LINK_DISAMBIGUATION_POPUP_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_LINK_DISAMBIGUATION_LINK_DISAMBIGUATION_POPUP_H_
6 #define CHROME_BROWSER_UI_VIEWS_LINK_DISAMBIGUATION_LINK_DISAMBIGUATION_POPUP_H_ 6 #define CHROME_BROWSER_UI_VIEWS_LINK_DISAMBIGUATION_LINK_DISAMBIGUATION_POPUP_H_
7 7
8 #include "base/macros.h"
8 #include "content/public/browser/web_contents_view_delegate.h" 9 #include "content/public/browser/web_contents_view_delegate.h"
9 #include "ui/gfx/geometry/rect.h" 10 #include "ui/gfx/geometry/rect.h"
10 #include "ui/views/widget/widget.h" 11 #include "ui/views/widget/widget.h"
11 12
12 namespace aura { 13 namespace aura {
13 class Window; 14 class Window;
14 } 15 }
15 16
16 namespace ui { 17 namespace ui {
17 class MouseEvent; 18 class MouseEvent;
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 52
52 // A non-owning pointer to the calling window that contains the unzoomed web 53 // A non-owning pointer to the calling window that contains the unzoomed web
53 // content bitmap, that we will be sending the GestureEvents received back to. 54 // content bitmap, that we will be sending the GestureEvents received back to.
54 const aura::Window* content_; 55 const aura::Window* content_;
55 ZoomBubbleView* view_; 56 ZoomBubbleView* view_;
56 57
57 DISALLOW_COPY_AND_ASSIGN(LinkDisambiguationPopup); 58 DISALLOW_COPY_AND_ASSIGN(LinkDisambiguationPopup);
58 }; 59 };
59 60
60 #endif // CHROME_BROWSER_UI_VIEWS_LINK_DISAMBIGUATION_LINK_DISAMBIGUATION_POPUP _H_ 61 #endif // CHROME_BROWSER_UI_VIEWS_LINK_DISAMBIGUATION_LINK_DISAMBIGUATION_POPUP _H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698