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 | |
8 | 7 |
9 #include <map> | 8 #include <map> |
10 #include <string> | 9 #include <string> |
11 | 10 |
12 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
13 #include "base/gtest_prod_util.h" | 12 #include "base/gtest_prod_util.h" |
14 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
15 #include "base/observer_list.h" | 14 #include "base/observer_list.h" |
16 #include "base/property_bag.h" | 15 #include "base/property_bag.h" |
17 #include "content/browser/browser_plugin/old/browser_plugin_host.h" | 16 #include "content/browser/browser_plugin/old/browser_plugin_host.h" |
(...skipping 773 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
791 content::ColorChooser* color_chooser_; | 790 content::ColorChooser* color_chooser_; |
792 | 791 |
793 // This must be at the end, or else we might get notifications and use other | 792 // This must be at the end, or else we might get notifications and use other |
794 // member variables that are gone. | 793 // member variables that are gone. |
795 content::NotificationRegistrar registrar_; | 794 content::NotificationRegistrar registrar_; |
796 | 795 |
797 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 796 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
798 }; | 797 }; |
799 | 798 |
800 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 799 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |