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