summaryrefslogtreecommitdiff
path: root/chromium/components/arc/timer/create_timer_request.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/arc/timer/create_timer_request.h')
-rw-r--r--chromium/components/arc/timer/create_timer_request.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/chromium/components/arc/timer/create_timer_request.h b/chromium/components/arc/timer/create_timer_request.h
deleted file mode 100644
index 252e5cca506..00000000000
--- a/chromium/components/arc/timer/create_timer_request.h
+++ /dev/null
@@ -1,28 +0,0 @@
-// Copyright 2018 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 COMPONENTS_ARC_TIMER_CREATE_TIMER_REQUEST_H_
-#define COMPONENTS_ARC_TIMER_CREATE_TIMER_REQUEST_H_
-
-#include <stdint.h>
-
-#include "base/files/scoped_file.h"
-
-// Typemapping for |CreateTimerRequest| in timer.mojom
-namespace arc {
-
-struct CreateTimerRequest {
- CreateTimerRequest();
- CreateTimerRequest(CreateTimerRequest&&);
- ~CreateTimerRequest();
-
- int32_t clock_id;
- base::ScopedFD expiration_fd;
-
- DISALLOW_COPY_AND_ASSIGN(CreateTimerRequest);
-};
-
-} // namespace arc
-
-#endif // COMPONENTS_ARC_TIMER_CREATE_TIMER_REQUEST_H_