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

Side by Side Diff: ui/views/bubble/bubble_frame_view.h

Issue 8618001: Get rid of the EnableClose() infrastructure in Widget. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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
« no previous file with comments | « ui/aura_shell/toplevel_frame_view.cc ('k') | ui/views/widget/native_widget_aura.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 UI_VIEWS_BUBBLE_BUBBLE_FRAME_VIEW_H_ 5 #ifndef UI_VIEWS_BUBBLE_BUBBLE_FRAME_VIEW_H_
6 #define UI_VIEWS_BUBBLE_BUBBLE_FRAME_VIEW_H_ 6 #define UI_VIEWS_BUBBLE_BUBBLE_FRAME_VIEW_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/gtest_prod_util.h" 9 #include "base/gtest_prod_util.h"
10 #include "ui/views/bubble/bubble_border.h" 10 #include "ui/views/bubble/bubble_border.h"
(...skipping 14 matching lines...) Expand all
25 bool allow_bubble_offscreen); 25 bool allow_bubble_offscreen);
26 virtual ~BubbleFrameView(); 26 virtual ~BubbleFrameView();
27 27
28 // NonClientFrameView overrides: 28 // NonClientFrameView overrides:
29 virtual gfx::Rect GetBoundsForClientView() const OVERRIDE; 29 virtual gfx::Rect GetBoundsForClientView() const OVERRIDE;
30 virtual gfx::Rect GetWindowBoundsForClientBounds( 30 virtual gfx::Rect GetWindowBoundsForClientBounds(
31 const gfx::Rect& client_bounds) const OVERRIDE; 31 const gfx::Rect& client_bounds) const OVERRIDE;
32 virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE; 32 virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE;
33 virtual void GetWindowMask(const gfx::Size& size, 33 virtual void GetWindowMask(const gfx::Size& size,
34 gfx::Path* window_mask) OVERRIDE {} 34 gfx::Path* window_mask) OVERRIDE {}
35 virtual void EnableClose(bool enable) OVERRIDE {}
36 virtual void ResetWindowControls() OVERRIDE {} 35 virtual void ResetWindowControls() OVERRIDE {}
37 virtual void UpdateWindowIcon() OVERRIDE {} 36 virtual void UpdateWindowIcon() OVERRIDE {}
38 37
39 // View overrides: 38 // View overrides:
40 virtual gfx::Size GetPreferredSize() OVERRIDE; 39 virtual gfx::Size GetPreferredSize() OVERRIDE;
41 40
42 // Accessor for bubble border inside border contents. 41 // Accessor for bubble border inside border contents.
43 BubbleBorder* bubble_border() const; 42 BubbleBorder* bubble_border() const;
44 43
45 private: 44 private:
46 FRIEND_TEST_ALL_PREFIXES(BubbleFrameViewBasicTest, GetBoundsForClientView); 45 FRIEND_TEST_ALL_PREFIXES(BubbleFrameViewBasicTest, GetBoundsForClientView);
47 46
48 BorderContentsView* border_contents_; 47 BorderContentsView* border_contents_;
49 BubbleBorder::ArrowLocation location_; 48 BubbleBorder::ArrowLocation location_;
50 bool allow_bubble_offscreen_; 49 bool allow_bubble_offscreen_;
51 50
52 DISALLOW_COPY_AND_ASSIGN(BubbleFrameView); 51 DISALLOW_COPY_AND_ASSIGN(BubbleFrameView);
53 }; 52 };
54 53
55 } // namespace views 54 } // namespace views
56 55
57 #endif // UI_VIEWS_BUBBLE_BUBBLE_FRAME_VIEW_H_ 56 #endif // UI_VIEWS_BUBBLE_BUBBLE_FRAME_VIEW_H_
OLDNEW
« no previous file with comments | « ui/aura_shell/toplevel_frame_view.cc ('k') | ui/views/widget/native_widget_aura.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698