resource_loader.h 693 B

1234567891011121314151617181920212223
  1. // Copyright 2021 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 ASH_WEBUI_FILE_MANAGER_RESOURCE_LOADER_H_
  5. #define ASH_WEBUI_FILE_MANAGER_RESOURCE_LOADER_H_
  6. #include <stddef.h>
  7. #include "content/public/browser/web_ui_data_source.h"
  8. #include "ui/base/webui/resource_path.h"
  9. namespace ash {
  10. namespace file_manager {
  11. void AddFilesAppResources(content::WebUIDataSource* source,
  12. const webui::ResourcePath* entries,
  13. size_t size);
  14. } // namespace file_manager
  15. } // namespace ash
  16. #endif // ASH_WEBUI_FILE_MANAGER_RESOURCE_LOADER_H_