1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_TASK_MANAGEMENT_PROVIDERS_WEB_CONTENTS_GUEST_TASK_H_
6 #define CHROME_BROWSER_TASK_MANAGEMENT_PROVIDERS_WEB_CONTENTS_GUEST_TASK_H_
8 #include "chrome/browser/task_management/providers/web_contents/renderer_task.h"
10 namespace task_management
{
12 // Defines a concrete RendererTask that represents WebContents owned by the
13 // GuestViewBase which represents a <*view> tag that is a browser plugin guest.
14 class GuestTask
: public RendererTask
{
16 explicit GuestTask(content::WebContents
* web_contents
);
17 ~GuestTask() override
;
19 // task_management::RendererTask:
20 void UpdateTitle() override
;
21 void UpdateFavicon() override
;
22 Type
GetType() const override
;
25 base::string16
GetCurrentTitle(content::WebContents
* web_contents
) const;
27 DISALLOW_COPY_AND_ASSIGN(GuestTask
);
30 } // namespace task_management
32 #endif // CHROME_BROWSER_TASK_MANAGEMENT_PROVIDERS_WEB_CONTENTS_GUEST_TASK_H_