Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(109)

Unified Diff: chrome/browser/task_manager/providers/web_contents/panel_tag.h

Issue 2263863002: Remove implementation of Panels on OSes other than ChromeOS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CR feedback Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/task_manager/providers/web_contents/panel_tag.h
diff --git a/chrome/browser/task_manager/providers/web_contents/panel_tag.h b/chrome/browser/task_manager/providers/web_contents/panel_tag.h
deleted file mode 100644
index 87820ff00e7325f353669b762d90994b16c8e4b0..0000000000000000000000000000000000000000
--- a/chrome/browser/task_manager/providers/web_contents/panel_tag.h
+++ /dev/null
@@ -1,33 +0,0 @@
-// 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_MANAGER_PROVIDERS_WEB_CONTENTS_PANEL_TAG_H_
-#define CHROME_BROWSER_TASK_MANAGER_PROVIDERS_WEB_CONTENTS_PANEL_TAG_H_
-
-#include "base/macros.h"
-#include "chrome/browser/task_manager/providers/web_contents/panel_task.h"
-#include "chrome/browser/task_manager/providers/web_contents/web_contents_tag.h"
-
-namespace task_manager {
-
-// Defines a concrete UserData type for WebContents owned by the PanelManager.
-class PanelTag : public WebContentsTag {
- public:
- // task_manager::WebContentsTag:
- PanelTask* CreateTask() const override;
-
- private:
- friend class WebContentsTags;
-
- PanelTag(content::WebContents* web_contents, Panel* panel);
- ~PanelTag() override;
-
- Panel* panel_;
-
- DISALLOW_COPY_AND_ASSIGN(PanelTag);
-};
-
-} // namespace task_manager
-
-#endif // CHROME_BROWSER_TASK_MANAGER_PROVIDERS_WEB_CONTENTS_PANEL_TAG_H_

Powered by Google App Engine
This is Rietveld 408576698