| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_TAB_CONTENTS_H_ | 5 #ifndef CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
| 6 #define CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ | 6 #define CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 | 10 |
| (...skipping 899 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 910 virtual void DidDisplayInsecureContent(); | 910 virtual void DidDisplayInsecureContent(); |
| 911 virtual void DidRunInsecureContent(const std::string& security_origin); | 911 virtual void DidRunInsecureContent(const std::string& security_origin); |
| 912 virtual void DidFailProvisionalLoadWithError( | 912 virtual void DidFailProvisionalLoadWithError( |
| 913 RenderViewHost* render_view_host, | 913 RenderViewHost* render_view_host, |
| 914 long long frame_id, | 914 long long frame_id, |
| 915 bool is_main_frame, | 915 bool is_main_frame, |
| 916 int error_code, | 916 int error_code, |
| 917 const GURL& url, | 917 const GURL& url, |
| 918 bool showing_repost_interstitial); | 918 bool showing_repost_interstitial); |
| 919 virtual void DocumentLoadedInFrame(long long frame_id); | 919 virtual void DocumentLoadedInFrame(long long frame_id); |
| 920 virtual void DidFinishLoad(long long frame_id); |
| 920 | 921 |
| 921 // RenderViewHostDelegate implementation. | 922 // RenderViewHostDelegate implementation. |
| 922 virtual RenderViewHostDelegate::View* GetViewDelegate(); | 923 virtual RenderViewHostDelegate::View* GetViewDelegate(); |
| 923 virtual RenderViewHostDelegate::RendererManagement* | 924 virtual RenderViewHostDelegate::RendererManagement* |
| 924 GetRendererManagementDelegate(); | 925 GetRendererManagementDelegate(); |
| 925 virtual RenderViewHostDelegate::BrowserIntegration* | 926 virtual RenderViewHostDelegate::BrowserIntegration* |
| 926 GetBrowserIntegrationDelegate(); | 927 GetBrowserIntegrationDelegate(); |
| 927 virtual RenderViewHostDelegate::Resource* GetResourceDelegate(); | 928 virtual RenderViewHostDelegate::Resource* GetResourceDelegate(); |
| 928 virtual RenderViewHostDelegate::ContentSettings* GetContentSettingsDelegate(); | 929 virtual RenderViewHostDelegate::ContentSettings* GetContentSettingsDelegate(); |
| 929 virtual RenderViewHostDelegate::Save* GetSaveDelegate(); | 930 virtual RenderViewHostDelegate::Save* GetSaveDelegate(); |
| (...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1318 // Content restrictions, used to disable print/copy etc based on content's | 1319 // Content restrictions, used to disable print/copy etc based on content's |
| 1319 // (full-page plugins for now only) permissions. | 1320 // (full-page plugins for now only) permissions. |
| 1320 int content_restrictions_; | 1321 int content_restrictions_; |
| 1321 | 1322 |
| 1322 // --------------------------------------------------------------------------- | 1323 // --------------------------------------------------------------------------- |
| 1323 | 1324 |
| 1324 DISALLOW_COPY_AND_ASSIGN(TabContents); | 1325 DISALLOW_COPY_AND_ASSIGN(TabContents); |
| 1325 }; | 1326 }; |
| 1326 | 1327 |
| 1327 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ | 1328 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
| OLD | NEW |