| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
| 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 498 const SkBitmap& bitmap); | 498 const SkBitmap& bitmap); |
| 499 void OnMsgScreenshot(const SkBitmap& bitmap); | 499 void OnMsgScreenshot(const SkBitmap& bitmap); |
| 500 void OnMsgClose(); | 500 void OnMsgClose(); |
| 501 void OnMsgRequestMove(const gfx::Rect& pos); | 501 void OnMsgRequestMove(const gfx::Rect& pos); |
| 502 void OnMsgDidRedirectProvisionalLoad(int32 page_id, | 502 void OnMsgDidRedirectProvisionalLoad(int32 page_id, |
| 503 const GURL& source_url, | 503 const GURL& source_url, |
| 504 const GURL& target_url); | 504 const GURL& target_url); |
| 505 void OnMsgDidStartLoading(); | 505 void OnMsgDidStartLoading(); |
| 506 void OnMsgDidStopLoading(); | 506 void OnMsgDidStopLoading(); |
| 507 void OnMsgDocumentAvailableInMainFrame(); | 507 void OnMsgDocumentAvailableInMainFrame(); |
| 508 void OnMsgDocumentOnLoadCompletedInMainFrame(); |
| 508 void OnMsgDidLoadResourceFromMemoryCache(const GURL& url, | 509 void OnMsgDidLoadResourceFromMemoryCache(const GURL& url, |
| 509 const std::string& frame_origin, | 510 const std::string& frame_origin, |
| 510 const std::string& main_frame_origin, | 511 const std::string& main_frame_origin, |
| 511 const std::string& security_info); | 512 const std::string& security_info); |
| 512 void OnMsgDidDisplayInsecureContent(); | 513 void OnMsgDidDisplayInsecureContent(); |
| 513 void OnMsgDidRunInsecureContent(const std::string& security_origin); | 514 void OnMsgDidRunInsecureContent(const std::string& security_origin); |
| 514 void OnMsgDidStartProvisionalLoadForFrame(bool main_frame, | 515 void OnMsgDidStartProvisionalLoadForFrame(bool main_frame, |
| 515 const GURL& url); | 516 const GURL& url); |
| 516 void OnMsgDidFailProvisionalLoadWithError(bool main_frame, | 517 void OnMsgDidFailProvisionalLoadWithError(bool main_frame, |
| 517 int error_code, | 518 int error_code, |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 709 int64 session_storage_namespace_id_; | 710 int64 session_storage_namespace_id_; |
| 710 | 711 |
| 711 // Whether this render view will be used for extensions. This controls | 712 // Whether this render view will be used for extensions. This controls |
| 712 // what process type we use. | 713 // what process type we use. |
| 713 bool is_extension_process_; | 714 bool is_extension_process_; |
| 714 | 715 |
| 715 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); | 716 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); |
| 716 }; | 717 }; |
| 717 | 718 |
| 718 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 719 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
| OLD | NEW |