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 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
399 // interface is going away. | 399 // interface is going away. |
400 // virtual WebContents* GetAsWebContents() override; | 400 // virtual WebContents* GetAsWebContents() override; |
401 gfx::Rect GetRootWindowResizerRect() const override; | 401 gfx::Rect GetRootWindowResizerRect() const override; |
402 void RenderViewCreated(RenderViewHost* render_view_host) override; | 402 void RenderViewCreated(RenderViewHost* render_view_host) override; |
403 void RenderViewReady(RenderViewHost* render_view_host) override; | 403 void RenderViewReady(RenderViewHost* render_view_host) override; |
404 void RenderViewTerminated(RenderViewHost* render_view_host, | 404 void RenderViewTerminated(RenderViewHost* render_view_host, |
405 base::TerminationStatus status, | 405 base::TerminationStatus status, |
406 int error_code) override; | 406 int error_code) override; |
407 void RenderViewDeleted(RenderViewHost* render_view_host) override; | 407 void RenderViewDeleted(RenderViewHost* render_view_host) override; |
408 void UpdateState(RenderViewHost* render_view_host, | 408 void UpdateState(RenderViewHost* render_view_host, |
409 int32 rvh_page_id, | |
410 int32 page_id, | 409 int32 page_id, |
411 const PageState& page_state) override; | 410 const PageState& page_state) override; |
412 void UpdateTargetURL(const GURL& url) override; | 411 void UpdateTargetURL(const GURL& url) override; |
413 void Close(RenderViewHost* render_view_host) override; | 412 void Close(RenderViewHost* render_view_host) override; |
414 void RequestMove(const gfx::Rect& new_bounds) override; | 413 void RequestMove(const gfx::Rect& new_bounds) override; |
415 void DidCancelLoading() override; | 414 void DidCancelLoading() override; |
416 void DocumentAvailableInMainFrame(RenderViewHost* render_view_host) override; | 415 void DocumentAvailableInMainFrame(RenderViewHost* render_view_host) override; |
417 void RouteCloseEvent(RenderViewHost* rvh) override; | 416 void RouteCloseEvent(RenderViewHost* rvh) override; |
418 void RouteMessageEvent(RenderViewHost* rvh, | 417 void RouteMessageEvent(RenderViewHost* rvh, |
419 const ViewMsg_PostMessage_Params& params) override; | 418 const ViewMsg_PostMessage_Params& params) override; |
(...skipping 812 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1232 bool virtual_keyboard_requested_; | 1231 bool virtual_keyboard_requested_; |
1233 | 1232 |
1234 base::WeakPtrFactory<WebContentsImpl> loading_weak_factory_; | 1233 base::WeakPtrFactory<WebContentsImpl> loading_weak_factory_; |
1235 | 1234 |
1236 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1235 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
1237 }; | 1236 }; |
1238 | 1237 |
1239 } // namespace content | 1238 } // namespace content |
1240 | 1239 |
1241 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1240 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |