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

Unified Diff: content/browser/tab_contents/tab_contents_delegate_unittest.cc

Issue 7791029: When the user navigates to the home page, make sure to set the RLZ string (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: When the user navigates to the home page, make sure to set the RLZ string Created 9 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/tab_contents/tab_contents_delegate.cc ('k') | content/common/content_notification_types.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/tab_contents/tab_contents_delegate_unittest.cc
===================================================================
--- content/browser/tab_contents/tab_contents_delegate_unittest.cc (revision 99286)
+++ content/browser/tab_contents/tab_contents_delegate_unittest.cc (working copy)
@@ -33,31 +33,33 @@
}
virtual void NavigationStateChanged(const TabContents* source,
- unsigned changed_flags) {}
+ unsigned changed_flags) OVERRIDE {}
- virtual std::string GetNavigationHeaders(const GURL& url) {
- return "";
+ virtual void AddNavigationHeaders(
+ const GURL& url, std::string* headers) OVERRIDE {
}
virtual void AddNewContents(TabContents* source,
TabContents* new_contents,
WindowOpenDisposition disposition,
const gfx::Rect& initial_pos,
- bool user_gesture) {}
+ bool user_gesture) OVERRIDE {}
- virtual void ActivateContents(TabContents* contents) {}
+ virtual void ActivateContents(TabContents* contents) OVERRIDE {}
- virtual void DeactivateContents(TabContents* contents) {}
+ virtual void DeactivateContents(TabContents* contents) OVERRIDE {}
- virtual void LoadingStateChanged(TabContents* source) {}
+ virtual void LoadingStateChanged(TabContents* source) OVERRIDE {}
- virtual void LoadProgressChanged(double progress) {}
+ virtual void LoadProgressChanged(double progress) OVERRIDE {}
- virtual void CloseContents(TabContents* source) {}
+ virtual void CloseContents(TabContents* source) OVERRIDE {}
- virtual void MoveContents(TabContents* source, const gfx::Rect& pos) {}
+ virtual void MoveContents(TabContents* source,
+ const gfx::Rect& pos) OVERRIDE {
+ }
- virtual void UpdateTargetURL(TabContents* source, const GURL& url) {}
+ virtual void UpdateTargetURL(TabContents* source, const GURL& url) OVERRIDE {}
};
TEST(TabContentsDelegateTest, UnregisterInDestructor) {
« no previous file with comments | « content/browser/tab_contents/tab_contents_delegate.cc ('k') | content/common/content_notification_types.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698