| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 virtual void UpdateEncoding(content::RenderViewHost* render_view_host, | 270 virtual void UpdateEncoding(content::RenderViewHost* render_view_host, |
| 271 const std::string& encoding) OVERRIDE; | 271 const std::string& encoding) OVERRIDE; |
| 272 virtual void UpdateTargetURL(int32 page_id, const GURL& url) OVERRIDE; | 272 virtual void UpdateTargetURL(int32 page_id, const GURL& url) OVERRIDE; |
| 273 virtual void Close(content::RenderViewHost* render_view_host) OVERRIDE; | 273 virtual void Close(content::RenderViewHost* render_view_host) OVERRIDE; |
| 274 virtual void RequestMove(const gfx::Rect& new_bounds) OVERRIDE; | 274 virtual void RequestMove(const gfx::Rect& new_bounds) OVERRIDE; |
| 275 virtual void SwappedOut(content::RenderViewHost* render_view_host) OVERRIDE; | 275 virtual void SwappedOut(content::RenderViewHost* render_view_host) OVERRIDE; |
| 276 virtual void DidStartLoading() OVERRIDE; | 276 virtual void DidStartLoading() OVERRIDE; |
| 277 virtual void DidStopLoading() OVERRIDE; | 277 virtual void DidStopLoading() OVERRIDE; |
| 278 virtual void DidCancelLoading() OVERRIDE; | 278 virtual void DidCancelLoading() OVERRIDE; |
| 279 virtual void DidChangeLoadProgress(double progress) OVERRIDE; | 279 virtual void DidChangeLoadProgress(double progress) OVERRIDE; |
| 280 virtual void DocumentAvailableInFrame( | 280 virtual void DocumentAvailableInMainFrame( |
| 281 content::RenderViewHost* render_view_host, | 281 content::RenderViewHost* render_view_host) OVERRIDE; |
| 282 bool main_frame, | |
| 283 const GURL& source_url) OVERRIDE; | |
| 284 virtual void DocumentOnLoadCompletedInMainFrame( | 282 virtual void DocumentOnLoadCompletedInMainFrame( |
| 285 content::RenderViewHost* render_view_host, | 283 content::RenderViewHost* render_view_host, |
| 286 int32 page_id) OVERRIDE; | 284 int32 page_id) OVERRIDE; |
| 287 virtual void RequestOpenURL(const GURL& url, | 285 virtual void RequestOpenURL(const GURL& url, |
| 288 const content::Referrer& referrer, | 286 const content::Referrer& referrer, |
| 289 WindowOpenDisposition disposition, | 287 WindowOpenDisposition disposition, |
| 290 int64 source_frame_id) OVERRIDE; | 288 int64 source_frame_id) OVERRIDE; |
| 291 virtual void RequestTransferURL( | 289 virtual void RequestTransferURL( |
| 292 const GURL& url, | 290 const GURL& url, |
| 293 const content::Referrer& referrer, | 291 const content::Referrer& referrer, |
| (...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 679 // Is there an opener associated with this? | 677 // Is there an opener associated with this? |
| 680 bool has_opener_; | 678 bool has_opener_; |
| 681 | 679 |
| 682 // Color chooser that was opened by this tab. | 680 // Color chooser that was opened by this tab. |
| 683 content::ColorChooser* color_chooser_; | 681 content::ColorChooser* color_chooser_; |
| 684 | 682 |
| 685 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 683 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
| 686 }; | 684 }; |
| 687 | 685 |
| 688 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 686 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |