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 679 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 typedef class WebContentsImpl TabContents; | |
701 | |
702 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 700 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |