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

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

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.cc
diff --git a/chrome/browser/task_manager/providers/web_contents/panel_tag.cc b/chrome/browser/task_manager/providers/web_contents/panel_tag.cc
deleted file mode 100644
index d65bec87e69094c8af85b91f20f9dfe4cfb6304e..0000000000000000000000000000000000000000
--- a/chrome/browser/task_manager/providers/web_contents/panel_tag.cc
+++ /dev/null
@@ -1,23 +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.
-
-#include "chrome/browser/task_manager/providers/web_contents/panel_tag.h"
-
-#include "chrome/browser/ui/panels/panel.h"
-
-namespace task_manager {
-
-PanelTask* PanelTag::CreateTask() const {
- return new PanelTask(panel_, web_contents());
-}
-
-PanelTag::PanelTag(content::WebContents* web_contents, Panel* panel)
- : WebContentsTag(web_contents),
- panel_(panel) {
-}
-
-PanelTag::~PanelTag() {
-}
-
-} // namespace task_manager

Powered by Google App Engine
This is Rietveld 408576698