OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_TAB_CONTENTS_TAB_CONTENTS_H_ | 5 #ifndef CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
6 #define CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ | 6 #define CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
7 | 7 |
8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
9 | 9 |
10 #include <map> | 10 #include <map> |
11 #include <set> | 11 #include <set> |
12 #include <string> | 12 #include <string> |
13 #include <vector> | 13 #include <vector> |
14 | 14 |
| 15 #include "app/gfx/native_widget_types.h" |
15 #include "base/basictypes.h" | 16 #include "base/basictypes.h" |
16 #include "base/gfx/native_widget_types.h" | |
17 #include "base/gfx/rect.h" | 17 #include "base/gfx/rect.h" |
18 #include "base/scoped_ptr.h" | 18 #include "base/scoped_ptr.h" |
19 #include "chrome/browser/autocomplete/autocomplete_edit.h" | 19 #include "chrome/browser/autocomplete/autocomplete_edit.h" |
20 #include "chrome/browser/cancelable_request.h" | 20 #include "chrome/browser/cancelable_request.h" |
21 #include "chrome/browser/dom_ui/dom_ui_factory.h" | 21 #include "chrome/browser/dom_ui/dom_ui_factory.h" |
22 #include "chrome/browser/download/save_package.h" | 22 #include "chrome/browser/download/save_package.h" |
23 #include "chrome/browser/fav_icon_helper.h" | 23 #include "chrome/browser/fav_icon_helper.h" |
24 #include "chrome/browser/find_notification_details.h" | 24 #include "chrome/browser/find_notification_details.h" |
25 #include "chrome/browser/shell_dialogs.h" | 25 #include "chrome/browser/shell_dialogs.h" |
26 #include "chrome/browser/renderer_host/render_view_host_delegate.h" | 26 #include "chrome/browser/renderer_host/render_view_host_delegate.h" |
(...skipping 1132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1159 | 1159 |
1160 // The time that we started to create the new tab page. | 1160 // The time that we started to create the new tab page. |
1161 base::TimeTicks new_tab_start_time_; | 1161 base::TimeTicks new_tab_start_time_; |
1162 | 1162 |
1163 // --------------------------------------------------------------------------- | 1163 // --------------------------------------------------------------------------- |
1164 | 1164 |
1165 DISALLOW_COPY_AND_ASSIGN(TabContents); | 1165 DISALLOW_COPY_AND_ASSIGN(TabContents); |
1166 }; | 1166 }; |
1167 | 1167 |
1168 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ | 1168 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
OLD | NEW |