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 CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
(...skipping 690 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
701 // remember it. | 701 // remember it. |
702 bool temporary_zoom_settings_; | 702 bool temporary_zoom_settings_; |
703 | 703 |
704 // The intrinsic size of the page. | 704 // The intrinsic size of the page. |
705 gfx::Size preferred_size_; | 705 gfx::Size preferred_size_; |
706 | 706 |
707 // Content restrictions, used to disable print/copy etc based on content's | 707 // Content restrictions, used to disable print/copy etc based on content's |
708 // (full-page plugins for now only) permissions. | 708 // (full-page plugins for now only) permissions. |
709 int content_restrictions_; | 709 int content_restrictions_; |
710 | 710 |
711 // Our view type. Default is VIEW_TYPE_WEB_CONTENTS. | 711 // Type of view this WebContents is displaying. |
712 content::ViewType view_type_; | 712 content::ViewType view_type_; |
713 | 713 |
714 // Color chooser that was opened by this tab. | 714 // Color chooser that was opened by this tab. |
715 content::ColorChooser* color_chooser_; | 715 content::ColorChooser* color_chooser_; |
716 | 716 |
717 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 717 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
718 }; | 718 }; |
719 | 719 |
720 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 720 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |