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 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
405 // interface is going away. | 405 // interface is going away. |
406 // virtual WebContents* GetAsWebContents() override; | 406 // virtual WebContents* GetAsWebContents() override; |
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 rvh_page_id, | |
416 int32 page_id, | 415 int32 page_id, |
417 const PageState& page_state) override; | 416 const PageState& page_state) override; |
418 virtual void UpdateTargetURL(const GURL& url) override; | 417 virtual void UpdateTargetURL(const GURL& url) override; |
419 virtual void Close(RenderViewHost* render_view_host) override; | 418 virtual void Close(RenderViewHost* render_view_host) override; |
420 virtual void RequestMove(const gfx::Rect& new_bounds) override; | 419 virtual void RequestMove(const gfx::Rect& new_bounds) override; |
421 virtual void DidCancelLoading() override; | 420 virtual void DidCancelLoading() override; |
422 virtual void DocumentAvailableInMainFrame( | 421 virtual void DocumentAvailableInMainFrame( |
423 RenderViewHost* render_view_host) override; | 422 RenderViewHost* render_view_host) override; |
424 virtual void RouteCloseEvent(RenderViewHost* rvh) override; | 423 virtual void RouteCloseEvent(RenderViewHost* rvh) override; |
425 virtual void RouteMessageEvent( | 424 virtual void RouteMessageEvent( |
(...skipping 818 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1244 scoped_ptr<WebContentsAudioMuter> audio_muter_; | 1243 scoped_ptr<WebContentsAudioMuter> audio_muter_; |
1245 | 1244 |
1246 base::WeakPtrFactory<WebContentsImpl> loading_weak_factory_; | 1245 base::WeakPtrFactory<WebContentsImpl> loading_weak_factory_; |
1247 | 1246 |
1248 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1247 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
1249 }; | 1248 }; |
1250 | 1249 |
1251 } // namespace content | 1250 } // namespace content |
1252 | 1251 |
1253 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1252 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |