draggable_region_provider.h 430 B

12345678910111213
  1. // Copyright (c) 2022 Salesforce, Inc.
  2. // Use of this source code is governed by the MIT license that can be
  3. // found in the LICENSE file.
  4. #ifndef ELECTRON_SHELL_BROWSER_DRAGGABLE_REGION_PROVIDER_H_
  5. #define ELECTRON_SHELL_BROWSER_DRAGGABLE_REGION_PROVIDER_H_
  6. class DraggableRegionProvider {
  7. public:
  8. virtual int NonClientHitTest(const gfx::Point& point) = 0;
  9. };
  10. #endif // ELECTRON_SHELL_BROWSER_DRAGGABLE_REGION_PROVIDER_H_