| 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 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 410 virtual void RouteCloseEvent(RenderViewHost* rvh) OVERRIDE; | 410 virtual void RouteCloseEvent(RenderViewHost* rvh) OVERRIDE; |
| 411 virtual void RouteMessageEvent( | 411 virtual void RouteMessageEvent( |
| 412 RenderViewHost* rvh, | 412 RenderViewHost* rvh, |
| 413 const ViewMsg_PostMessage_Params& params) OVERRIDE; | 413 const ViewMsg_PostMessage_Params& params) OVERRIDE; |
| 414 virtual bool AddMessageToConsole(int32 level, | 414 virtual bool AddMessageToConsole(int32 level, |
| 415 const base::string16& message, | 415 const base::string16& message, |
| 416 int32 line_no, | 416 int32 line_no, |
| 417 const base::string16& source_id) OVERRIDE; | 417 const base::string16& source_id) OVERRIDE; |
| 418 virtual RendererPreferences GetRendererPrefs( | 418 virtual RendererPreferences GetRendererPrefs( |
| 419 BrowserContext* browser_context) const OVERRIDE; | 419 BrowserContext* browser_context) const OVERRIDE; |
| 420 virtual WebPreferences ComputeWebkitPrefs() OVERRIDE; | 420 virtual WebPreferences GetWebkitPrefs() OVERRIDE; |
| 421 virtual void OnUserGesture() OVERRIDE; | 421 virtual void OnUserGesture() OVERRIDE; |
| 422 virtual void OnIgnoredUIEvent() OVERRIDE; | 422 virtual void OnIgnoredUIEvent() OVERRIDE; |
| 423 virtual void RendererUnresponsive(RenderViewHost* render_view_host, | 423 virtual void RendererUnresponsive(RenderViewHost* render_view_host, |
| 424 bool is_during_beforeunload, | 424 bool is_during_beforeunload, |
| 425 bool is_during_unload) OVERRIDE; | 425 bool is_during_unload) OVERRIDE; |
| 426 virtual void RendererResponsive(RenderViewHost* render_view_host) OVERRIDE; | 426 virtual void RendererResponsive(RenderViewHost* render_view_host) OVERRIDE; |
| 427 virtual void LoadStateChanged(const GURL& url, | 427 virtual void LoadStateChanged(const GURL& url, |
| 428 const net::LoadStateWithParam& load_state, | 428 const net::LoadStateWithParam& load_state, |
| 429 uint64 upload_position, | 429 uint64 upload_position, |
| 430 uint64 upload_size) OVERRIDE; | 430 uint64 upload_size) OVERRIDE; |
| (...skipping 753 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1184 // The accessibility mode for all frames. This is queried when each frame | 1184 // The accessibility mode for all frames. This is queried when each frame |
| 1185 // is created, and broadcast to all frames when it changes. | 1185 // is created, and broadcast to all frames when it changes. |
| 1186 AccessibilityMode accessibility_mode_; | 1186 AccessibilityMode accessibility_mode_; |
| 1187 | 1187 |
| 1188 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1188 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
| 1189 }; | 1189 }; |
| 1190 | 1190 |
| 1191 } // namespace content | 1191 } // namespace content |
| 1192 | 1192 |
| 1193 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1193 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |