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

Unified Diff: tools/telemetry/telemetry/internal/actions/gesture_common.js

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/actions/gesture_common.js
diff --git a/tools/telemetry/telemetry/internal/actions/gesture_common.js b/tools/telemetry/telemetry/internal/actions/gesture_common.js
deleted file mode 100644
index 9522f65c2e838cdbf2cff89e0a7b9e39bb50343d..0000000000000000000000000000000000000000
--- a/tools/telemetry/telemetry/internal/actions/gesture_common.js
+++ /dev/null
@@ -1,65 +0,0 @@
-// Copyright 2013 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.
-
-// This file provides common functionality for synthetic gesture actions.
-'use strict';
-
-(function() {
-
- // Returns the bounding rectangle wrt to the top-most document.
- function getBoundingRect(el) {
- var client_rect = el.getBoundingClientRect();
- var bound = { left: client_rect.left,
- top: client_rect.top,
- width: client_rect.width,
- height: client_rect.height };
-
- var frame = el.ownerDocument.defaultView.frameElement;
- while (frame) {
- var frame_bound = frame.getBoundingClientRect();
- // This computation doesn't account for more complex CSS transforms on the
- // frame (e.g. scaling or rotations).
- bound.left += frame_bound.left;
- bound.top += frame_bound.top;
-
- frame = frame.ownerDocument.frameElement;
- }
- return bound;
- }
-
- function getBoundingVisibleRect(el) {
- var rect = getBoundingRect(el);
- if (rect.top < 0) {
- rect.height += rect.top;
- rect.top = 0;
- }
- if (rect.left < 0) {
- rect.width += rect.left;
- rect.left = 0;
- }
-
- // TODO(ymalik): Remove the fallback path once the visualViewportHeight and
- // visualViewportWidth properties roll into stable.
- var visualViewportHeight = window.innerHeight;
- var visualViewportWidth = window.innerWidth;
- if (chrome.gpuBenchmarking.visualViewportHeight) {
- visualViewportHeight = chrome.gpuBenchmarking.visualViewportHeight();
- }
- if (chrome.gpuBenchmarking.visualViewportWidth) {
- visualViewportWidth = chrome.gpuBenchmarking.visualViewportWidth();
- }
- var outsideHeight = (rect.top + rect.height) - visualViewportHeight;
- var outsideWidth = (rect.left + rect.width) - visualViewportWidth;
-
- if (outsideHeight > 0) {
- rect.height -= outsideHeight;
- }
- if (outsideWidth > 0) {
- rect.width -= outsideWidth;
- }
- return rect;
- };
-
- window.__GestureCommon_GetBoundingVisibleRect = getBoundingVisibleRect;
-})();

Powered by Google App Engine
This is Rietveld 408576698