| 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 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 408 const string16& type, | 408 const string16& type, |
| 409 const string16& href, | 409 const string16& href, |
| 410 const string16& title, | 410 const string16& title, |
| 411 const string16& disposition); | 411 const string16& disposition); |
| 412 void OnWebIntentDispatch(const webkit_glue::WebIntentData& intent, | 412 void OnWebIntentDispatch(const webkit_glue::WebIntentData& intent, |
| 413 int intent_id); | 413 int intent_id); |
| 414 void OnDidStartProvisionalLoadForFrame(int64 frame_id, | 414 void OnDidStartProvisionalLoadForFrame(int64 frame_id, |
| 415 bool main_frame, | 415 bool main_frame, |
| 416 const GURL& opener_url, | 416 const GURL& opener_url, |
| 417 const GURL& url); | 417 const GURL& url); |
| 418 void OnDidRedirectProvisionalLoad(int32 page_id, | |
| 419 const GURL& opener_url, | |
| 420 const GURL& source_url, | |
| 421 const GURL& target_url); | |
| 422 void OnDidFailProvisionalLoadWithError( | 418 void OnDidFailProvisionalLoadWithError( |
| 423 const ViewHostMsg_DidFailProvisionalLoadWithError_Params& params); | 419 const ViewHostMsg_DidFailProvisionalLoadWithError_Params& params); |
| 424 void OnDidLoadResourceFromMemoryCache(const GURL& url, | 420 void OnDidLoadResourceFromMemoryCache(const GURL& url, |
| 425 const std::string& security_info, | 421 const std::string& security_info, |
| 426 const std::string& http_request, | 422 const std::string& http_request, |
| 427 ResourceType::Type resource_type); | 423 ResourceType::Type resource_type); |
| 428 void OnDidDisplayInsecureContent(); | 424 void OnDidDisplayInsecureContent(); |
| 429 void OnDidRunInsecureContent(const std::string& security_origin, | 425 void OnDidRunInsecureContent(const std::string& security_origin, |
| 430 const GURL& target_url); | 426 const GURL& target_url); |
| 431 void OnDocumentLoadedInFrame(int64 frame_id); | 427 void OnDocumentLoadedInFrame(int64 frame_id); |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 698 // Our view type. Default is VIEW_TYPE_WEB_CONTENTS. | 694 // Our view type. Default is VIEW_TYPE_WEB_CONTENTS. |
| 699 content::ViewType view_type_; | 695 content::ViewType view_type_; |
| 700 | 696 |
| 701 // Color chooser that was opened by this tab. | 697 // Color chooser that was opened by this tab. |
| 702 content::ColorChooser* color_chooser_; | 698 content::ColorChooser* color_chooser_; |
| 703 | 699 |
| 704 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 700 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
| 705 }; | 701 }; |
| 706 | 702 |
| 707 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 703 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |