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_RENDER_VIEW_HOST_DELEGATE_HELPER_H_ | 5 #ifndef CHROME_BROWSER_TAB_CONTENTS_RENDER_VIEW_HOST_DELEGATE_HELPER_H_ |
6 #define CHROME_BROWSER_TAB_CONTENTS_RENDER_VIEW_HOST_DELEGATE_HELPER_H_ | 6 #define CHROME_BROWSER_TAB_CONTENTS_RENDER_VIEW_HOST_DELEGATE_HELPER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "content/browser/webui/web_ui.h" | 12 #include "content/browser/webui/web_ui.h" |
13 #include "content/common/notification_observer.h" | 13 #include "content/common/notification_observer.h" |
14 #include "content/common/notification_registrar.h" | 14 #include "content/common/notification_registrar.h" |
15 #include "content/common/window_container_type.h" | 15 #include "content/public/common/window_container_type.h" |
16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupType.h" | 16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupType.h" |
17 #include "ui/gfx/rect.h" | 17 #include "ui/gfx/rect.h" |
18 #include "webkit/glue/webpreferences.h" | 18 #include "webkit/glue/webpreferences.h" |
19 #include "webkit/glue/window_open_disposition.h" | 19 #include "webkit/glue/window_open_disposition.h" |
20 | 20 |
21 class BackgroundContents; | 21 class BackgroundContents; |
22 class Profile; | 22 class Profile; |
23 class RenderProcessHost; | 23 class RenderProcessHost; |
24 class RenderViewHost; | 24 class RenderViewHost; |
25 class RenderViewHostDelegate; | 25 class RenderViewHostDelegate; |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 const std::string& value); | 133 const std::string& value); |
134 static void ClearInspectorSettings(content::BrowserContext* browser_context); | 134 static void ClearInspectorSettings(content::BrowserContext* browser_context); |
135 | 135 |
136 private: | 136 private: |
137 RenderViewHostDelegateHelper(); | 137 RenderViewHostDelegateHelper(); |
138 | 138 |
139 DISALLOW_COPY_AND_ASSIGN(RenderViewHostDelegateHelper); | 139 DISALLOW_COPY_AND_ASSIGN(RenderViewHostDelegateHelper); |
140 }; | 140 }; |
141 | 141 |
142 #endif // CHROME_BROWSER_TAB_CONTENTS_RENDER_VIEW_HOST_DELEGATE_HELPER_H_ | 142 #endif // CHROME_BROWSER_TAB_CONTENTS_RENDER_VIEW_HOST_DELEGATE_HELPER_H_ |
OLD | NEW |