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

Unified Diff: chrome/browser/feedback/proto/math.proto

Issue 225183018: Move feedback files into src/components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase to latest Created 6 years, 7 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/feedback/proto/math.proto
diff --git a/chrome/browser/feedback/proto/math.proto b/chrome/browser/feedback/proto/math.proto
deleted file mode 100644
index 6d8d5cbcd4febe191077e0c6eabc52c1375d3721..0000000000000000000000000000000000000000
--- a/chrome/browser/feedback/proto/math.proto
+++ /dev/null
@@ -1,25 +0,0 @@
-// Copyright (c) 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.
-
-// Messages containing common math data structures.
-
-syntax = "proto2";
-
-option optimize_for = LITE_RUNTIME;
-
-package userfeedback;
-
-// 2D Dimensions.
-message Dimensions {
- required float width = 1;
- required float height = 2;
-};
-
-// Axis-aligned rectangle in 2D space.
-message Rectangle {
- required float left = 1;
- required float top = 2;
- required float width = 3;
- required float height = 4;
-};

Powered by Google App Engine
This is Rietveld 408576698