From c551f43206405019121bd2b2c93714319a0a3300 Mon Sep 17 00:00:00 2001 From: Allan Sandfeld Jensen Date: Thu, 23 Jan 2020 17:21:03 +0100 Subject: BASELINE: Update Chromium to 79.0.3945.139 Change-Id: I336b7182fab9bca80b709682489c07db112eaca5 Reviewed-by: Allan Sandfeld Jensen --- chromium/base/profiler/thread_delegate_win.h | 57 ---------------------------- 1 file changed, 57 deletions(-) delete mode 100644 chromium/base/profiler/thread_delegate_win.h (limited to 'chromium/base/profiler/thread_delegate_win.h') diff --git a/chromium/base/profiler/thread_delegate_win.h b/chromium/base/profiler/thread_delegate_win.h deleted file mode 100644 index 9e1d781e67b..00000000000 --- a/chromium/base/profiler/thread_delegate_win.h +++ /dev/null @@ -1,57 +0,0 @@ -// Copyright 2019 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 BASE_PROFILER_THREAD_DELEGATE_WIN_H_ -#define BASE_PROFILER_THREAD_DELEGATE_WIN_H_ - -#include - -#include "base/base_export.h" -#include "base/profiler/thread_delegate.h" -#include "base/threading/platform_thread.h" -#include "base/win/scoped_handle.h" - -namespace base { - -// Platform- and thread-specific implementation in support of stack sampling on -// Windows. -class BASE_EXPORT ThreadDelegateWin : public ThreadDelegate { - public: - class ScopedSuspendThread : public ThreadDelegate::ScopedSuspendThread { - public: - explicit ScopedSuspendThread(HANDLE thread_handle); - ~ScopedSuspendThread() override; - - bool WasSuccessful() const override; - - private: - HANDLE thread_handle_; - bool was_successful_; - - DISALLOW_COPY_AND_ASSIGN(ScopedSuspendThread); - }; - - explicit ThreadDelegateWin(PlatformThreadId thread_id); - ~ThreadDelegateWin() override; - - ThreadDelegateWin(const ThreadDelegateWin&) = delete; - ThreadDelegateWin& operator=(const ThreadDelegateWin&) = delete; - - // ThreadDelegate - std::unique_ptr - CreateScopedSuspendThread() override; - bool GetThreadContext(CONTEXT* thread_context) override; - uintptr_t GetStackBaseAddress() const override; - bool CanCopyStack(uintptr_t stack_pointer) override; - std::vector GetRegistersToRewrite( - CONTEXT* thread_context) override; - - private: - win::ScopedHandle thread_handle_; - const uintptr_t thread_stack_base_address_; -}; - -} // namespace base - -#endif // BASE_PROFILER_THREAD_DELEGATE_WIN_H_ -- cgit v1.2.3