| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_TAB_CONTENTS_WEB_CONTENTS_H_ | 5 #ifndef CHROME_BROWSER_TAB_CONTENTS_WEB_CONTENTS_H_ |
| 6 #define CHROME_BROWSER_TAB_CONTENTS_WEB_CONTENTS_H_ | 6 #define CHROME_BROWSER_TAB_CONTENTS_WEB_CONTENTS_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 virtual void Close(RenderViewHost* render_view_host); | 312 virtual void Close(RenderViewHost* render_view_host); |
| 313 virtual void RequestMove(const gfx::Rect& new_bounds); | 313 virtual void RequestMove(const gfx::Rect& new_bounds); |
| 314 virtual void DidStartLoading(RenderViewHost* render_view_host, int32 page_id); | 314 virtual void DidStartLoading(RenderViewHost* render_view_host, int32 page_id); |
| 315 virtual void DidStopLoading(RenderViewHost* render_view_host, int32 page_id); | 315 virtual void DidStopLoading(RenderViewHost* render_view_host, int32 page_id); |
| 316 virtual void DidStartProvisionalLoadForFrame(RenderViewHost* render_view_host, | 316 virtual void DidStartProvisionalLoadForFrame(RenderViewHost* render_view_host, |
| 317 bool is_main_frame, | 317 bool is_main_frame, |
| 318 const GURL& url); | 318 const GURL& url); |
| 319 virtual void DidRedirectProvisionalLoad(int32 page_id, | 319 virtual void DidRedirectProvisionalLoad(int32 page_id, |
| 320 const GURL& source_url, | 320 const GURL& source_url, |
| 321 const GURL& target_url); | 321 const GURL& target_url); |
| 322 virtual void DidLoadResourceFromMemoryCache(const GURL& url, | 322 virtual void DidLoadResourceFromMemoryCache( |
| 323 const std::string& security_info); | 323 const GURL& url, |
| 324 const std::string& frame_origin, |
| 325 const std::string& main_frame_origin, |
| 326 const std::string& security_info); |
| 324 virtual void DidFailProvisionalLoadWithError( | 327 virtual void DidFailProvisionalLoadWithError( |
| 325 RenderViewHost* render_view_host, | 328 RenderViewHost* render_view_host, |
| 326 bool is_main_frame, | 329 bool is_main_frame, |
| 327 int error_code, | 330 int error_code, |
| 328 const GURL& url, | 331 const GURL& url, |
| 329 bool showing_repost_interstitial); | 332 bool showing_repost_interstitial); |
| 330 virtual void UpdateFavIconURL(RenderViewHost* render_view_host, | 333 virtual void UpdateFavIconURL(RenderViewHost* render_view_host, |
| 331 int32 page_id, const GURL& icon_url); | 334 int32 page_id, const GURL& icon_url); |
| 332 virtual void DidDownloadImage(RenderViewHost* render_view_host, | 335 virtual void DidDownloadImage(RenderViewHost* render_view_host, |
| 333 int id, | 336 int id, |
| (...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 668 | 671 |
| 669 // The last find result. This object contains details about the number of | 672 // The last find result. This object contains details about the number of |
| 670 // matches, the find selection rectangle, etc. The UI can access this | 673 // matches, the find selection rectangle, etc. The UI can access this |
| 671 // information to build its presentation. | 674 // information to build its presentation. |
| 672 FindNotificationDetails find_result_; | 675 FindNotificationDetails find_result_; |
| 673 | 676 |
| 674 DISALLOW_COPY_AND_ASSIGN(WebContents); | 677 DISALLOW_COPY_AND_ASSIGN(WebContents); |
| 675 }; | 678 }; |
| 676 | 679 |
| 677 #endif // CHROME_BROWSER_TAB_CONTENTS_WEB_CONTENTS_H_ | 680 #endif // CHROME_BROWSER_TAB_CONTENTS_WEB_CONTENTS_H_ |
| OLD | NEW |