| 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 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 virtual void RenderViewReady(RenderViewHost* render_view_host); | 294 virtual void RenderViewReady(RenderViewHost* render_view_host); |
| 295 virtual void RenderViewGone(RenderViewHost* render_view_host); | 295 virtual void RenderViewGone(RenderViewHost* render_view_host); |
| 296 virtual void DidNavigate(RenderViewHost* render_view_host, | 296 virtual void DidNavigate(RenderViewHost* render_view_host, |
| 297 const ViewHostMsg_FrameNavigate_Params& params); | 297 const ViewHostMsg_FrameNavigate_Params& params); |
| 298 virtual void UpdateState(RenderViewHost* render_view_host, | 298 virtual void UpdateState(RenderViewHost* render_view_host, |
| 299 int32 page_id, | 299 int32 page_id, |
| 300 const std::string& state); | 300 const std::string& state); |
| 301 virtual void UpdateTitle(RenderViewHost* render_view_host, | 301 virtual void UpdateTitle(RenderViewHost* render_view_host, |
| 302 int32 page_id, | 302 int32 page_id, |
| 303 const std::wstring& title); | 303 const std::wstring& title); |
| 304 virtual void UpdateFeedList(RenderViewHost* render_view_host, |
| 305 const ViewHostMsg_UpdateFeedList_Params& params); |
| 304 virtual void UpdateEncoding(RenderViewHost* render_view_host, | 306 virtual void UpdateEncoding(RenderViewHost* render_view_host, |
| 305 const std::wstring& encoding); | 307 const std::wstring& encoding); |
| 306 virtual void UpdateTargetURL(int32 page_id, const GURL& url); | 308 virtual void UpdateTargetURL(int32 page_id, const GURL& url); |
| 307 virtual void UpdateThumbnail(const GURL& url, | 309 virtual void UpdateThumbnail(const GURL& url, |
| 308 const SkBitmap& bitmap, | 310 const SkBitmap& bitmap, |
| 309 const ThumbnailScore& score); | 311 const ThumbnailScore& score); |
| 310 virtual void Close(RenderViewHost* render_view_host); | 312 virtual void Close(RenderViewHost* render_view_host); |
| 311 virtual void RequestMove(const gfx::Rect& new_bounds); | 313 virtual void RequestMove(const gfx::Rect& new_bounds); |
| 312 virtual void DidStartLoading(RenderViewHost* render_view_host, int32 page_id); | 314 virtual void DidStartLoading(RenderViewHost* render_view_host, int32 page_id); |
| 313 virtual void DidStopLoading(RenderViewHost* render_view_host, int32 page_id); | 315 virtual void DidStopLoading(RenderViewHost* render_view_host, int32 page_id); |
| (...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 666 | 668 |
| 667 // The last find result. This object contains details about the number of | 669 // The last find result. This object contains details about the number of |
| 668 // matches, the find selection rectangle, etc. The UI can access this | 670 // matches, the find selection rectangle, etc. The UI can access this |
| 669 // information to build its presentation. | 671 // information to build its presentation. |
| 670 FindNotificationDetails find_result_; | 672 FindNotificationDetails find_result_; |
| 671 | 673 |
| 672 DISALLOW_COPY_AND_ASSIGN(WebContents); | 674 DISALLOW_COPY_AND_ASSIGN(WebContents); |
| 673 }; | 675 }; |
| 674 | 676 |
| 675 #endif // CHROME_BROWSER_TAB_CONTENTS_WEB_CONTENTS_H_ | 677 #endif // CHROME_BROWSER_TAB_CONTENTS_WEB_CONTENTS_H_ |
| OLD | NEW |