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