Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(80)

Side by Side Diff: chrome/browser/tab_contents/tab_contents.h

Issue 4448003: Implement onCompleted event for the webNavigation API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « chrome/browser/renderer_host/render_view_host_delegate.h ('k') | chrome/browser/tab_contents/tab_contents.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698