| 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 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 663 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 674 // IPC message handlers. | 674 // IPC message handlers. |
| 675 void OnDidLoadResourceFromMemoryCache(const GURL& url, | 675 void OnDidLoadResourceFromMemoryCache(const GURL& url, |
| 676 const std::string& security_info, | 676 const std::string& security_info, |
| 677 const std::string& http_request, | 677 const std::string& http_request, |
| 678 const std::string& mime_type, | 678 const std::string& mime_type, |
| 679 ResourceType::Type resource_type); | 679 ResourceType::Type resource_type); |
| 680 void OnDidDisplayInsecureContent(); | 680 void OnDidDisplayInsecureContent(); |
| 681 void OnDidRunInsecureContent(const std::string& security_origin, | 681 void OnDidRunInsecureContent(const std::string& security_origin, |
| 682 const GURL& target_url); | 682 const GURL& target_url); |
| 683 void OnDocumentLoadedInFrame(); | 683 void OnDocumentLoadedInFrame(); |
| 684 void OnDidFinishLoad(int64 frame_id, | 684 void OnDidFinishLoad(const GURL& url, |
| 685 const GURL& url, | |
| 686 bool is_main_frame); | 685 bool is_main_frame); |
| 687 void OnGoToEntryAtOffset(int offset); | 686 void OnGoToEntryAtOffset(int offset); |
| 688 void OnUpdateZoomLimits(int minimum_percent, | 687 void OnUpdateZoomLimits(int minimum_percent, |
| 689 int maximum_percent, | 688 int maximum_percent, |
| 690 bool remember); | 689 bool remember); |
| 691 void OnEnumerateDirectory(int request_id, const base::FilePath& path); | 690 void OnEnumerateDirectory(int request_id, const base::FilePath& path); |
| 692 void OnJSOutOfMemory(); | 691 void OnJSOutOfMemory(); |
| 693 | 692 |
| 694 void OnRegisterProtocolHandler(const std::string& protocol, | 693 void OnRegisterProtocolHandler(const std::string& protocol, |
| 695 const GURL& url, | 694 const GURL& url, |
| (...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1060 // Whether this WebContents is responsible for displaying a subframe in a | 1059 // Whether this WebContents is responsible for displaying a subframe in a |
| 1061 // different process from its parent page. | 1060 // different process from its parent page. |
| 1062 bool is_subframe_; | 1061 bool is_subframe_; |
| 1063 | 1062 |
| 1064 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1063 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
| 1065 }; | 1064 }; |
| 1066 | 1065 |
| 1067 } // namespace content | 1066 } // namespace content |
| 1068 | 1067 |
| 1069 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1068 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |