OLD | NEW |
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_LOCATION_BAR_CONTENT_SETTING_IMAGE_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_CONTENT_SETTING_IMAGE_VIEW_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_CONTENT_SETTING_IMAGE_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_CONTENT_SETTING_IMAGE_VIEW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "base/string16.h" | 11 #include "base/string16.h" |
12 #include "chrome/common/content_settings_types.h" | 12 #include "chrome/common/content_settings_types.h" |
13 #include "ui/base/animation/animation_delegate.h" | 13 #include "ui/base/animation/animation_delegate.h" |
14 #include "ui/views/controls/image_view.h" | 14 #include "ui/views/controls/image_view.h" |
15 #include "ui/views/widget/widget.h" | 15 #include "ui/views/widget/widget.h" |
16 | 16 |
17 class ContentSettingImageModel; | 17 class ContentSettingImageModel; |
18 class ContentSettingBubbleContents; | 18 class ContentSettingBubbleContents; |
19 class LocationBarView; | 19 class LocationBarView; |
20 class TabContents; | |
21 | 20 |
22 namespace content { | 21 namespace content { |
23 class WebContents; | 22 class WebContents; |
24 } | 23 } |
25 | 24 |
26 namespace views { | 25 namespace views { |
27 class MouseEvent; | 26 class MouseEvent; |
28 } | 27 } |
29 | 28 |
30 namespace ui { | 29 namespace ui { |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 string16 animated_text_; | 73 string16 animated_text_; |
75 bool pause_animation_; | 74 bool pause_animation_; |
76 int text_size_; | 75 int text_size_; |
77 int visible_text_size_; | 76 int visible_text_size_; |
78 gfx::Insets saved_insets_; | 77 gfx::Insets saved_insets_; |
79 | 78 |
80 DISALLOW_IMPLICIT_CONSTRUCTORS(ContentSettingImageView); | 79 DISALLOW_IMPLICIT_CONSTRUCTORS(ContentSettingImageView); |
81 }; | 80 }; |
82 | 81 |
83 #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_CONTENT_SETTING_IMAGE_VIEW_H_ | 82 #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_CONTENT_SETTING_IMAGE_VIEW_H_ |
OLD | NEW |