diff options
author | dsh@google.com <dsh@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-27 20:43:33 +0000 |
---|---|---|
committer | dsh@google.com <dsh@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-27 20:43:33 +0000 |
commit | e1acf6f902e50222baf99bfb492ecc38a1604975 (patch) | |
tree | 503d45705b14be7e2f1ed86c71d6064abbf90fbe /chrome/browser/web_contents.h | |
parent | a2f5993e1ce940e8a8eec900abaeed02e2eee09b (diff) | |
download | chromium_src-e1acf6f902e50222baf99bfb492ecc38a1604975.zip chromium_src-e1acf6f902e50222baf99bfb492ecc38a1604975.tar.gz chromium_src-e1acf6f902e50222baf99bfb492ecc38a1604975.tar.bz2 |
Move Time, TimeDelta and TimeTicks into namespace base.
Review URL: http://codereview.chromium.org/7995
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4022 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/web_contents.h')
-rw-r--r-- | chrome/browser/web_contents.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/web_contents.h b/chrome/browser/web_contents.h index f73bb97..705d027 100644 --- a/chrome/browser/web_contents.h +++ b/chrome/browser/web_contents.h @@ -490,7 +490,7 @@ class WebContents : public TabContents, HistoryRequestMap history_requests_; // System time at which the current load was started. - TimeTicks current_load_start_; + base::TimeTicks current_load_start_; // Whether we have a (non-empty) title for the current page. // Used to prevent subsequent title updates from affecting history. This @@ -527,7 +527,7 @@ class WebContents : public TabContents, scoped_refptr<SelectFileDialog> select_file_dialog_; // The time that the last javascript message was dismissed. - TimeTicks last_javascript_message_dismissal_; + base::TimeTicks last_javascript_message_dismissal_; // True if the user has decided to block future javascript messages. This is // reset on navigations to false on navigations. @@ -543,7 +543,7 @@ class WebContents : public TabContents, PendingInstall pending_install_; // The last time that the download shelf was made visible. - TimeTicks last_download_shelf_show_; + base::TimeTicks last_download_shelf_show_; // The current load state and the URL associated with it. net::LoadState load_state_; |