| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 543 void OnMsgDidStartLoading(); | 543 void OnMsgDidStartLoading(); |
| 544 void OnMsgDidStopLoading(); | 544 void OnMsgDidStopLoading(); |
| 545 void OnMsgDocumentAvailableInMainFrame(); | 545 void OnMsgDocumentAvailableInMainFrame(); |
| 546 void OnMsgDocumentOnLoadCompletedInMainFrame(int32 page_id); | 546 void OnMsgDocumentOnLoadCompletedInMainFrame(int32 page_id); |
| 547 void OnMsgDidLoadResourceFromMemoryCache(const GURL& url, | 547 void OnMsgDidLoadResourceFromMemoryCache(const GURL& url, |
| 548 const std::string& frame_origin, | 548 const std::string& frame_origin, |
| 549 const std::string& main_frame_origin, | 549 const std::string& main_frame_origin, |
| 550 const std::string& security_info); | 550 const std::string& security_info); |
| 551 void OnMsgDidDisplayInsecureContent(); | 551 void OnMsgDidDisplayInsecureContent(); |
| 552 void OnMsgDidRunInsecureContent(const std::string& security_origin); | 552 void OnMsgDidRunInsecureContent(const std::string& security_origin); |
| 553 void OnMsgDidStartProvisionalLoadForFrame(bool main_frame, | 553 void OnMsgDidStartProvisionalLoadForFrame(long long frame_id, |
| 554 bool main_frame, |
| 554 const GURL& url); | 555 const GURL& url); |
| 555 void OnMsgDidFailProvisionalLoadWithError(bool main_frame, | 556 void OnMsgDidFailProvisionalLoadWithError(long long frame_id, |
| 557 bool main_frame, |
| 556 int error_code, | 558 int error_code, |
| 557 const GURL& url, | 559 const GURL& url, |
| 558 bool showing_repost_interstitial); | 560 bool showing_repost_interstitial); |
| 559 void OnMsgFindReply(int request_id, | 561 void OnMsgFindReply(int request_id, |
| 560 int number_of_matches, | 562 int number_of_matches, |
| 561 const gfx::Rect& selection_rect, | 563 const gfx::Rect& selection_rect, |
| 562 int active_match_ordinal, | 564 int active_match_ordinal, |
| 563 bool final_update); | 565 bool final_update); |
| 564 void OnExecuteCodeFinished(int request_id, bool success); | 566 void OnExecuteCodeFinished(int request_id, bool success); |
| 565 void OnMsgUpdateFavIconURL(int32 page_id, const GURL& icon_url); | 567 void OnMsgUpdateFavIconURL(int32 page_id, const GURL& icon_url); |
| (...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 776 // Whether the accessibility tree should be saved, for unit testing. | 778 // Whether the accessibility tree should be saved, for unit testing. |
| 777 bool save_accessibility_tree_for_testing_; | 779 bool save_accessibility_tree_for_testing_; |
| 778 | 780 |
| 779 // The most recently received accessibility tree - for unit testing only. | 781 // The most recently received accessibility tree - for unit testing only. |
| 780 webkit_glue::WebAccessibility accessibility_tree_; | 782 webkit_glue::WebAccessibility accessibility_tree_; |
| 781 | 783 |
| 782 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); | 784 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); |
| 783 }; | 785 }; |
| 784 | 786 |
| 785 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 787 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
| OLD | NEW |