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 "chrome/browser/tab_contents/render_view_host_delegate_helper.h" | 12 #include "chrome/browser/tab_contents/render_view_host_delegate_helper.h" |
13 #include "chrome/browser/ui/app_modal_dialogs/js_modal_dialog.h" | 13 #include "chrome/browser/ui/app_modal_dialogs/js_modal_dialog.h" |
14 #include "chrome/common/view_types.h" | 14 #include "chrome/common/view_types.h" |
15 #include "chrome/common/window_container_type.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" |
| 17 #include "content/common/window_container_type.h" |
18 #include "webkit/glue/window_open_disposition.h" | 18 #include "webkit/glue/window_open_disposition.h" |
19 | 19 |
20 class TabContents; | 20 class TabContents; |
21 struct WebPreferences; | 21 struct WebPreferences; |
22 class DesktopNotificationHandler; | 22 class DesktopNotificationHandler; |
23 | 23 |
24 namespace gfx { | 24 namespace gfx { |
25 class Rect; | 25 class Rect; |
26 } | 26 } |
27 | 27 |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 BackgroundContents* contents; | 177 BackgroundContents* contents; |
178 | 178 |
179 // The name of the parent frame for these contents. | 179 // The name of the parent frame for these contents. |
180 const string16& frame_name; | 180 const string16& frame_name; |
181 | 181 |
182 // The ID of the parent application (if any). | 182 // The ID of the parent application (if any). |
183 const string16& application_id; | 183 const string16& application_id; |
184 }; | 184 }; |
185 | 185 |
186 #endif // CHROME_BROWSER_TAB_CONTENTS_BACKGROUND_CONTENTS_H_ | 186 #endif // CHROME_BROWSER_TAB_CONTENTS_BACKGROUND_CONTENTS_H_ |
OLD | NEW |