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 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
397 // interface is going away. | 397 // interface is going away. |
398 // virtual WebContents* GetAsWebContents() override; | 398 // virtual WebContents* GetAsWebContents() override; |
399 gfx::Rect GetRootWindowResizerRect() const override; | 399 gfx::Rect GetRootWindowResizerRect() const override; |
400 void RenderViewCreated(RenderViewHost* render_view_host) override; | 400 void RenderViewCreated(RenderViewHost* render_view_host) override; |
401 void RenderViewReady(RenderViewHost* render_view_host) override; | 401 void RenderViewReady(RenderViewHost* render_view_host) override; |
402 void RenderViewTerminated(RenderViewHost* render_view_host, | 402 void RenderViewTerminated(RenderViewHost* render_view_host, |
403 base::TerminationStatus status, | 403 base::TerminationStatus status, |
404 int error_code) override; | 404 int error_code) override; |
405 void RenderViewDeleted(RenderViewHost* render_view_host) override; | 405 void RenderViewDeleted(RenderViewHost* render_view_host) override; |
406 void UpdateState(RenderViewHost* render_view_host, | 406 void UpdateState(RenderViewHost* render_view_host, |
407 int32 rvh_page_id, | |
408 int32 page_id, | 407 int32 page_id, |
409 const PageState& page_state) override; | 408 const PageState& page_state) override; |
410 void UpdateTargetURL(const GURL& url) override; | 409 void UpdateTargetURL(const GURL& url) override; |
411 void Close(RenderViewHost* render_view_host) override; | 410 void Close(RenderViewHost* render_view_host) override; |
412 void RequestMove(const gfx::Rect& new_bounds) override; | 411 void RequestMove(const gfx::Rect& new_bounds) override; |
413 void DidCancelLoading() override; | 412 void DidCancelLoading() override; |
414 void DocumentAvailableInMainFrame(RenderViewHost* render_view_host) override; | 413 void DocumentAvailableInMainFrame(RenderViewHost* render_view_host) override; |
415 void RouteCloseEvent(RenderViewHost* rvh) override; | 414 void RouteCloseEvent(RenderViewHost* rvh) override; |
416 void RouteMessageEvent(RenderViewHost* rvh, | 415 void RouteMessageEvent(RenderViewHost* rvh, |
417 const ViewMsg_PostMessage_Params& params) override; | 416 const ViewMsg_PostMessage_Params& params) override; |
(...skipping 796 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1214 scoped_ptr<WebContentsAudioMuter> audio_muter_; | 1213 scoped_ptr<WebContentsAudioMuter> audio_muter_; |
1215 | 1214 |
1216 base::WeakPtrFactory<WebContentsImpl> loading_weak_factory_; | 1215 base::WeakPtrFactory<WebContentsImpl> loading_weak_factory_; |
1217 | 1216 |
1218 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1217 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
1219 }; | 1218 }; |
1220 | 1219 |
1221 } // namespace content | 1220 } // namespace content |
1222 | 1221 |
1223 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1222 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |