os_exchange_data_provider_builder_mac.h 682 B

1234567891011121314151617181920
  1. // Copyright 2016 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef UI_BASE_DRAGDROP_OS_EXCHANGE_DATA_PROVIDER_BUILDER_MAC_H_
  5. #define UI_BASE_DRAGDROP_OS_EXCHANGE_DATA_PROVIDER_BUILDER_MAC_H_
  6. #include <memory>
  7. #include "ui/base/dragdrop/os_exchange_data_provider.h"
  8. namespace ui {
  9. // We can't include os_exchange_data_provider_mac.h from arbitrary C++ files
  10. // because it depends on the Objective-C headers.
  11. std::unique_ptr<OSExchangeDataProvider> BuildOSExchangeDataProviderMac();
  12. } // namespace ui
  13. #endif // UI_BASE_DRAGDROP_OS_EXCHANGE_DATA_PROVIDER_BUILDER_MAC_H_