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

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

Issue 150213: Add a ExtensionBrowserTest base class (Closed)
Patch Set: added timeouts fixed other tests Created 11 years, 5 months 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
« no previous file with comments | « chrome/browser/ssl/ssl_browser_tests.cc ('k') | chrome/browser/tab_contents/tab_contents.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 7
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 9
10 #include <map> 10 #include <map>
(...skipping 776 matching lines...) Expand 10 before | Expand all | Expand 10 after
787 bool showing_repost_interstitial); 787 bool showing_repost_interstitial);
788 virtual void UpdateFavIconURL(RenderViewHost* render_view_host, 788 virtual void UpdateFavIconURL(RenderViewHost* render_view_host,
789 int32 page_id, const GURL& icon_url); 789 int32 page_id, const GURL& icon_url);
790 virtual void DidDownloadImage(RenderViewHost* render_view_host, 790 virtual void DidDownloadImage(RenderViewHost* render_view_host,
791 int id, 791 int id,
792 const GURL& image_url, 792 const GURL& image_url,
793 bool errored, 793 bool errored,
794 const SkBitmap& image); 794 const SkBitmap& image);
795 virtual void RequestOpenURL(const GURL& url, const GURL& referrer, 795 virtual void RequestOpenURL(const GURL& url, const GURL& referrer,
796 WindowOpenDisposition disposition); 796 WindowOpenDisposition disposition);
797 virtual void DomOperationResponse(const std::string& json_string,
798 int automation_id);
799 virtual void ProcessDOMUIMessage(const std::string& message, 797 virtual void ProcessDOMUIMessage(const std::string& message,
800 const std::string& content, 798 const std::string& content,
801 int request_id, 799 int request_id,
802 bool has_callback); 800 bool has_callback);
803 virtual void DocumentLoadedInFrame(); 801 virtual void DocumentLoadedInFrame();
804 virtual void ProcessExternalHostMessage(const std::string& message, 802 virtual void ProcessExternalHostMessage(const std::string& message,
805 const std::string& origin, 803 const std::string& origin,
806 const std::string& target); 804 const std::string& target);
807 virtual void GoToEntryAtOffset(int offset); 805 virtual void GoToEntryAtOffset(int offset);
808 virtual void GetHistoryListCount(int* back_list_count, 806 virtual void GetHistoryListCount(int* back_list_count,
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
1085 // True if the user has decided to block future javascript messages. This is 1083 // True if the user has decided to block future javascript messages. This is
1086 // reset on navigations to false on navigations. 1084 // reset on navigations to false on navigations.
1087 bool suppress_javascript_messages_; 1085 bool suppress_javascript_messages_;
1088 1086
1089 // --------------------------------------------------------------------------- 1087 // ---------------------------------------------------------------------------
1090 1088
1091 DISALLOW_COPY_AND_ASSIGN(TabContents); 1089 DISALLOW_COPY_AND_ASSIGN(TabContents);
1092 }; 1090 };
1093 1091
1094 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ 1092 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_
OLDNEW
« no previous file with comments | « chrome/browser/ssl/ssl_browser_tests.cc ('k') | chrome/browser/tab_contents/tab_contents.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698