OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_BACKGROUND_CONTENTS_H_ | 5 #ifndef CHROME_BROWSER_TAB_CONTENTS_BACKGROUND_CONTENTS_H_ |
6 #define CHROME_BROWSER_TAB_CONTENTS_BACKGROUND_CONTENTS_H_ | 6 #define CHROME_BROWSER_TAB_CONTENTS_BACKGROUND_CONTENTS_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/scoped_ptr.h" | |
13 #include "chrome/browser/tab_contents/render_view_host_delegate_helper.h" | 12 #include "chrome/browser/tab_contents/render_view_host_delegate_helper.h" |
14 #include "chrome/browser/ui/app_modal_dialogs/js_modal_dialog.h" | 13 #include "chrome/browser/ui/app_modal_dialogs/js_modal_dialog.h" |
15 #include "chrome/common/view_types.h" | 14 #include "chrome/common/view_types.h" |
16 #include "content/browser/renderer_host/render_view_host_delegate.h" | 15 #include "content/browser/renderer_host/render_view_host_delegate.h" |
17 #include "content/common/notification_registrar.h" | 16 #include "content/common/notification_registrar.h" |
18 #include "content/common/window_container_type.h" | 17 #include "content/common/window_container_type.h" |
19 #include "webkit/glue/window_open_disposition.h" | 18 #include "webkit/glue/window_open_disposition.h" |
20 | 19 |
21 class TabContents; | 20 class TabContents; |
22 struct WebPreferences; | 21 struct WebPreferences; |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 BackgroundContents* contents; | 178 BackgroundContents* contents; |
180 | 179 |
181 // The name of the parent frame for these contents. | 180 // The name of the parent frame for these contents. |
182 const string16& frame_name; | 181 const string16& frame_name; |
183 | 182 |
184 // The ID of the parent application (if any). | 183 // The ID of the parent application (if any). |
185 const string16& application_id; | 184 const string16& application_id; |
186 }; | 185 }; |
187 | 186 |
188 #endif // CHROME_BROWSER_TAB_CONTENTS_BACKGROUND_CONTENTS_H_ | 187 #endif // CHROME_BROWSER_TAB_CONTENTS_BACKGROUND_CONTENTS_H_ |
OLD | NEW |