| 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 gfx::Rect GetRootWindowResizerRect() const OVERRIDE; | 407 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; |
| 408 virtual void RenderViewCreated(RenderViewHost* render_view_host) OVERRIDE; | 408 virtual void RenderViewCreated(RenderViewHost* render_view_host) OVERRIDE; |
| 409 virtual void RenderViewReady(RenderViewHost* render_view_host) OVERRIDE; | 409 virtual void RenderViewReady(RenderViewHost* render_view_host) OVERRIDE; |
| 410 virtual void RenderViewTerminated(RenderViewHost* render_view_host, | 410 virtual void RenderViewTerminated(RenderViewHost* render_view_host, |
| 411 base::TerminationStatus status, | 411 base::TerminationStatus status, |
| 412 int error_code) OVERRIDE; | 412 int error_code) OVERRIDE; |
| 413 virtual void RenderViewDeleted(RenderViewHost* render_view_host) OVERRIDE; | 413 virtual void RenderViewDeleted(RenderViewHost* render_view_host) OVERRIDE; |
| 414 virtual void UpdateState(RenderViewHost* render_view_host, | 414 virtual void UpdateState(RenderViewHost* render_view_host, |
| 415 int32 page_id, | 415 int32 page_id, |
| 416 const PageState& page_state) OVERRIDE; | 416 const PageState& page_state) OVERRIDE; |
| 417 virtual void UpdateTargetURL(int32 page_id, const GURL& url) OVERRIDE; | 417 virtual void UpdateTargetURL(const GURL& url) OVERRIDE; |
| 418 virtual void Close(RenderViewHost* render_view_host) OVERRIDE; | 418 virtual void Close(RenderViewHost* render_view_host) OVERRIDE; |
| 419 virtual void RequestMove(const gfx::Rect& new_bounds) OVERRIDE; | 419 virtual void RequestMove(const gfx::Rect& new_bounds) OVERRIDE; |
| 420 virtual void DidCancelLoading() OVERRIDE; | 420 virtual void DidCancelLoading() OVERRIDE; |
| 421 virtual void DocumentAvailableInMainFrame( | 421 virtual void DocumentAvailableInMainFrame( |
| 422 RenderViewHost* render_view_host) OVERRIDE; | 422 RenderViewHost* render_view_host) OVERRIDE; |
| 423 virtual void RouteCloseEvent(RenderViewHost* rvh) OVERRIDE; | 423 virtual void RouteCloseEvent(RenderViewHost* rvh) OVERRIDE; |
| 424 virtual void RouteMessageEvent( | 424 virtual void RouteMessageEvent( |
| 425 RenderViewHost* rvh, | 425 RenderViewHost* rvh, |
| 426 const ViewMsg_PostMessage_Params& params) OVERRIDE; | 426 const ViewMsg_PostMessage_Params& params) OVERRIDE; |
| 427 virtual bool AddMessageToConsole(int32 level, | 427 virtual bool AddMessageToConsole(int32 level, |
| (...skipping 820 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1248 scoped_ptr<WebContentsAudioMuter> audio_muter_; | 1248 scoped_ptr<WebContentsAudioMuter> audio_muter_; |
| 1249 | 1249 |
| 1250 base::WeakPtrFactory<WebContentsImpl> loading_weak_factory_; | 1250 base::WeakPtrFactory<WebContentsImpl> loading_weak_factory_; |
| 1251 | 1251 |
| 1252 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1252 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
| 1253 }; | 1253 }; |
| 1254 | 1254 |
| 1255 } // namespace content | 1255 } // namespace content |
| 1256 | 1256 |
| 1257 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1257 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |