| Index: components/devtools_discovery/basic_target_descriptor.cc
|
| diff --git a/components/devtools_discovery/basic_target_descriptor.cc b/components/devtools_discovery/basic_target_descriptor.cc
|
| index e425b8ba3fa515ba0e8cbbf22bffbdfba232582c..d8d2f8386ef0b79e60154dde82e3ccbce19f7f78 100644
|
| --- a/components/devtools_discovery/basic_target_descriptor.cc
|
| +++ b/components/devtools_discovery/basic_target_descriptor.cc
|
| @@ -47,7 +47,7 @@
|
| content::NavigationEntry* entry = controller.GetActiveEntry();
|
| if (entry != NULL && entry->GetURL().is_valid())
|
| favicon_url_ = entry->GetFavicon().url;
|
| - last_active_time_ = web_contents->GetLastActiveTime();
|
| + last_activity_time_ = web_contents->GetLastActiveTime();
|
| }
|
| }
|
|
|
| @@ -82,8 +82,8 @@
|
| return favicon_url_;
|
| }
|
|
|
| -base::Time BasicTargetDescriptor::GetLastActiveTime() const {
|
| - return last_active_time_;
|
| +base::TimeTicks BasicTargetDescriptor::GetLastActivityTime() const {
|
| + return last_activity_time_;
|
| }
|
|
|
| bool BasicTargetDescriptor::IsAttached() const {
|
|
|