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 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 virtual WebContentsView* GetView() const OVERRIDE; | 202 virtual WebContentsView* GetView() const OVERRIDE; |
203 virtual WebUI* CreateWebUI(const GURL& url) OVERRIDE; | 203 virtual WebUI* CreateWebUI(const GURL& url) OVERRIDE; |
204 virtual WebUI* GetWebUI() const OVERRIDE; | 204 virtual WebUI* GetWebUI() const OVERRIDE; |
205 virtual WebUI* GetCommittedWebUI() const OVERRIDE; | 205 virtual WebUI* GetCommittedWebUI() const OVERRIDE; |
206 virtual void SetUserAgentOverride(const std::string& override) OVERRIDE; | 206 virtual void SetUserAgentOverride(const std::string& override) OVERRIDE; |
207 virtual const std::string& GetUserAgentOverride() const OVERRIDE; | 207 virtual const std::string& GetUserAgentOverride() const OVERRIDE; |
208 #if defined(OS_WIN) | 208 #if defined(OS_WIN) |
209 virtual void SetParentNativeViewAccessible( | 209 virtual void SetParentNativeViewAccessible( |
210 gfx::NativeViewAccessible accessible_parent) OVERRIDE; | 210 gfx::NativeViewAccessible accessible_parent) OVERRIDE; |
211 #endif | 211 #endif |
| 212 virtual void SetRendererAccessibilityMode(bool on) OVERRIDE; |
212 virtual const base::string16& GetTitle() const OVERRIDE; | 213 virtual const base::string16& GetTitle() const OVERRIDE; |
213 virtual int32 GetMaxPageID() OVERRIDE; | 214 virtual int32 GetMaxPageID() OVERRIDE; |
214 virtual int32 GetMaxPageIDForSiteInstance( | 215 virtual int32 GetMaxPageIDForSiteInstance( |
215 SiteInstance* site_instance) OVERRIDE; | 216 SiteInstance* site_instance) OVERRIDE; |
216 virtual SiteInstance* GetSiteInstance() const OVERRIDE; | 217 virtual SiteInstance* GetSiteInstance() const OVERRIDE; |
217 virtual SiteInstance* GetPendingSiteInstance() const OVERRIDE; | 218 virtual SiteInstance* GetPendingSiteInstance() const OVERRIDE; |
218 virtual bool IsLoading() const OVERRIDE; | 219 virtual bool IsLoading() const OVERRIDE; |
219 virtual bool IsWaitingForResponse() const OVERRIDE; | 220 virtual bool IsWaitingForResponse() const OVERRIDE; |
220 virtual const net::LoadStateWithParam& GetLoadState() const OVERRIDE; | 221 virtual const net::LoadStateWithParam& GetLoadState() const OVERRIDE; |
221 virtual const base::string16& GetLoadStateHost() const OVERRIDE; | 222 virtual const base::string16& GetLoadStateHost() const OVERRIDE; |
(...skipping 820 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1042 // Whether this WebContents is responsible for displaying a subframe in a | 1043 // Whether this WebContents is responsible for displaying a subframe in a |
1043 // different process from its parent page. | 1044 // different process from its parent page. |
1044 bool is_subframe_; | 1045 bool is_subframe_; |
1045 | 1046 |
1046 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1047 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
1047 }; | 1048 }; |
1048 | 1049 |
1049 } // namespace content | 1050 } // namespace content |
1050 | 1051 |
1051 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1052 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |