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

Unified Diff: tools/telemetry/telemetry/internal/browser/extension_dict.py

Issue 1647513002: Delete tools/telemetry. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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: tools/telemetry/telemetry/internal/browser/extension_dict.py
diff --git a/tools/telemetry/telemetry/internal/browser/extension_dict.py b/tools/telemetry/telemetry/internal/browser/extension_dict.py
deleted file mode 100644
index 95742b5ed341556718f2e172c8c88c1358f5343a..0000000000000000000000000000000000000000
--- a/tools/telemetry/telemetry/internal/browser/extension_dict.py
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 2012 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.
-
-from telemetry.internal.browser import extension_to_load
-
-
-class ExtensionDict(object):
- """Dictionary of ExtensionPage instances, with extension_id as key."""
-
- def __init__(self, extension_backend):
- self._extension_backend = extension_backend
-
- def __getitem__(self, load_extension):
- """Given an ExtensionToLoad instance, returns the corresponding
- ExtensionPage instance."""
- if not isinstance(load_extension, extension_to_load.ExtensionToLoad):
- raise TypeError("Input param must be of type ExtensionToLoad")
- return self.GetByExtensionId(load_extension.extension_id)[0]
-
- def __contains__(self, load_extension):
- """Checks if this ExtensionToLoad instance has been loaded"""
- if not isinstance(load_extension, extension_to_load.ExtensionToLoad):
- raise TypeError("Input param must be of type ExtensionToLoad")
- return load_extension.extension_id in self._extension_backend
-
- def keys(self):
- return self._extension_backend.keys()
-
- def GetByExtensionId(self, extension_id):
- """Returns a list of extensions given an extension id. This is useful for
- connecting to built-in apps and component extensions."""
- return self._extension_backend[extension_id]

Powered by Google App Engine
This is Rietveld 408576698