diff options
author | pfeldman@chromium.org <pfeldman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-16 04:50:41 +0000 |
---|---|---|
committer | pfeldman@chromium.org <pfeldman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-16 04:50:41 +0000 |
commit | e0f458cbcebd8f6f75dbc7d86a0698ad5ec22b55 (patch) | |
tree | 681d5e1d3928d5a9fb4c5180541753d399245098 /chrome/plugin | |
parent | f05ca65c8857804c078f06b260f3175493dd4720 (diff) | |
download | chromium_src-e0f458cbcebd8f6f75dbc7d86a0698ad5ec22b55.zip chromium_src-e0f458cbcebd8f6f75dbc7d86a0698ad5ec22b55.tar.gz chromium_src-e0f458cbcebd8f6f75dbc7d86a0698ad5ec22b55.tar.bz2 |
DevTools: report network stack-based finish time for resources.
BUG=
TEST=
Review URL: http://codereview.chromium.org/3385004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@59617 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/plugin')
-rw-r--r-- | chrome/plugin/chrome_plugin_host.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/plugin/chrome_plugin_host.cc b/chrome/plugin/chrome_plugin_host.cc index 2590182..b93fbfe 100644 --- a/chrome/plugin/chrome_plugin_host.cc +++ b/chrome/plugin/chrome_plugin_host.cc @@ -106,7 +106,8 @@ class PluginRequestHandlerProxy } virtual void OnCompletedRequest(const URLRequestStatus& status, - const std::string& security_info) { + const std::string& security_info, + const base::Time& completion_time) { completed_ = true; if (!status.is_success()) { |