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 667 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
678 // remember it. | 678 // remember it. |
679 bool temporary_zoom_settings_; | 679 bool temporary_zoom_settings_; |
680 | 680 |
681 // The intrinsic size of the page. | 681 // The intrinsic size of the page. |
682 gfx::Size preferred_size_; | 682 gfx::Size preferred_size_; |
683 | 683 |
684 // Content restrictions, used to disable print/copy etc based on content's | 684 // Content restrictions, used to disable print/copy etc based on content's |
685 // (full-page plugins for now only) permissions. | 685 // (full-page plugins for now only) permissions. |
686 int content_restrictions_; | 686 int content_restrictions_; |
687 | 687 |
688 // Our view type. Default is VIEW_TYPE_TAB_CONTENTS. | 688 // Our view type. Default is VIEW_TYPE_WEB_CONTENTS. |
689 content::ViewType view_type_; | 689 content::ViewType view_type_; |
690 | 690 |
691 // Is there an opener associated with this? | 691 // Is there an opener associated with this? |
692 bool has_opener_; | 692 bool has_opener_; |
693 | 693 |
694 // Color chooser that was opened by this tab. | 694 // Color chooser that was opened by this tab. |
695 content::ColorChooser* color_chooser_; | 695 content::ColorChooser* color_chooser_; |
696 | 696 |
697 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 697 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
698 }; | 698 }; |
699 | 699 |
700 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 700 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |