| 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 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 490 const SkBitmap& bitmap); | 490 const SkBitmap& bitmap); |
| 491 void OnMsgScreenshot(const SkBitmap& bitmap); | 491 void OnMsgScreenshot(const SkBitmap& bitmap); |
| 492 void OnMsgClose(); | 492 void OnMsgClose(); |
| 493 void OnMsgRequestMove(const gfx::Rect& pos); | 493 void OnMsgRequestMove(const gfx::Rect& pos); |
| 494 void OnMsgDidRedirectProvisionalLoad(int32 page_id, | 494 void OnMsgDidRedirectProvisionalLoad(int32 page_id, |
| 495 const GURL& source_url, | 495 const GURL& source_url, |
| 496 const GURL& target_url); | 496 const GURL& target_url); |
| 497 void OnMsgDidStartLoading(); | 497 void OnMsgDidStartLoading(); |
| 498 void OnMsgDidStopLoading(); | 498 void OnMsgDidStopLoading(); |
| 499 void OnMsgDocumentAvailableInMainFrame(); | 499 void OnMsgDocumentAvailableInMainFrame(); |
| 500 void OnMsgDocumentOnLoadCompletedInMainFrame(); |
| 500 void OnMsgDidLoadResourceFromMemoryCache(const GURL& url, | 501 void OnMsgDidLoadResourceFromMemoryCache(const GURL& url, |
| 501 const std::string& frame_origin, | 502 const std::string& frame_origin, |
| 502 const std::string& main_frame_origin, | 503 const std::string& main_frame_origin, |
| 503 const std::string& security_info); | 504 const std::string& security_info); |
| 504 void OnMsgDidDisplayInsecureContent(); | 505 void OnMsgDidDisplayInsecureContent(); |
| 505 void OnMsgDidRunInsecureContent(const std::string& security_origin); | 506 void OnMsgDidRunInsecureContent(const std::string& security_origin); |
| 506 void OnMsgDidStartProvisionalLoadForFrame(bool main_frame, | 507 void OnMsgDidStartProvisionalLoadForFrame(bool main_frame, |
| 507 const GURL& url); | 508 const GURL& url); |
| 508 void OnMsgDidFailProvisionalLoadWithError(bool main_frame, | 509 void OnMsgDidFailProvisionalLoadWithError(bool main_frame, |
| 509 int error_code, | 510 int error_code, |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 700 int64 session_storage_namespace_id_; | 701 int64 session_storage_namespace_id_; |
| 701 | 702 |
| 702 // Whether this render view will be used for extensions. This controls | 703 // Whether this render view will be used for extensions. This controls |
| 703 // what process type we use. | 704 // what process type we use. |
| 704 bool is_extension_process_; | 705 bool is_extension_process_; |
| 705 | 706 |
| 706 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); | 707 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); |
| 707 }; | 708 }; |
| 708 | 709 |
| 709 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 710 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
| OLD | NEW |