1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_TASK_MANAGEMENT_PROVIDERS_WEB_CONTENTS_RENDERER_TASK_H_
#define CHROME_BROWSER_TASK_MANAGEMENT_PROVIDERS_WEB_CONTENTS_RENDERER_TASK_H_
#include "chrome/browser/task_management/providers/task.h"
#include "components/favicon/core/favicon_driver_observer.h"
#include "content/public/browser/navigation_entry.h"
class ProcessResourceUsage;
namespace content {
class RenderProcessHost;
class WebContents;
} // namespace content
namespace task_management {
// Defines an abstract base class for various types of renderer process tasks
// such as background contents, tab contents, ... etc.
class RendererTask : public Task,
public favicon::FaviconDriverObserver {
public:
RendererTask(const base::string16& title,
const gfx::ImageSkia* icon,
content::WebContents* web_contents,
content::RenderProcessHost* render_process_host);
~RendererTask() override;
// An abstract method that will be called when the event
// WebContentsObserver::DidNavigateMainFrame() occurs. This gives the
// freedom to concrete tasks to adjust the title however they need to before
// they set it.
virtual void UpdateTitle() = 0;
// An abstract method that will be called when the event
// FaviconDriverObserver::OnFaviconUpdated() occurs, so that concrete tasks
// can update their favicons.
virtual void UpdateFavicon() = 0;
// task_management::Task:
void Activate() override;
void Refresh(const base::TimeDelta& update_interval,
int64 refresh_flags) override;
Type GetType() const override;
int GetChildProcessUniqueID() const override;
base::string16 GetProfileName() const override;
int64 GetV8MemoryAllocated() const override;
int64 GetV8MemoryUsed() const override;
bool ReportsWebCacheStats() const override;
blink::WebCache::ResourceTypeStats GetWebCacheStats() const override;
// favicon::FaviconDriverObserver:
void OnFaviconAvailable(const gfx::Image& image) override;
void OnFaviconUpdated(favicon::FaviconDriver* favicon_driver,
bool icon_url_changed) override;
protected:
// Returns the title of the given |web_contents|.
static base::string16 GetTitleFromWebContents(
content::WebContents* web_contents);
// Returns the favicon of the given |web_contents| if any, and returns
// |nullptr| otherwise.
static const gfx::ImageSkia* GetFaviconFromWebContents(
content::WebContents* web_contents);
// Prefixes the given renderer |title| with the appropriate string based on
// whether it's an app, an extension, incognito or a background page or
// contents.
static const base::string16 PrefixRendererTitle(const base::string16& title,
bool is_app,
bool is_extension,
bool is_incognito,
bool is_background);
content::WebContents* web_contents() const { return web_contents_; }
private:
// The WebContents of the task this object represents.
content::WebContents* web_contents_;
// The render process host of the task this object represents.
content::RenderProcessHost* render_process_host_;
// The Mojo service wrapper that will provide us with the V8 memory usage and
// the WebCache resource stats of the render process represented by this
// object.
scoped_ptr<ProcessResourceUsage> renderer_resources_sampler_;
// The unique ID of the RenderProcessHost.
const int render_process_id_;
// The allocated and used V8 memory (in bytes).
int64 v8_memory_allocated_;
int64 v8_memory_used_;
// The WebKit resource cache statistics for this renderer.
blink::WebCache::ResourceTypeStats webcache_stats_;
// The profile name associated with the browser context of the render view
// host.
const base::string16 profile_name_;
DISALLOW_COPY_AND_ASSIGN(RendererTask);
};
} // namespace task_management
#endif // CHROME_BROWSER_TASK_MANAGEMENT_PROVIDERS_WEB_CONTENTS_RENDERER_TASK_H_
|