feed_app_agent.h 723 B

1234567891011121314151617
  1. // Copyright 2022 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 IOS_CHROME_APP_FEED_APP_AGENT_H_
  5. #define IOS_CHROME_APP_FEED_APP_AGENT_H_
  6. #import "ios/chrome/app/application_delegate/observing_app_state_agent.h"
  7. // The agent that manages the Feed service creation. This service allows the App
  8. // and users to perform Feed related operations e.g. Creating a Feed, Following
  9. // a Website, etc. This also manages feed background refresh.
  10. // TODO(crbug.com/1344866): Coordinate background tasks when more are added.
  11. @interface FeedAppAgent : SceneObservingAppAgent
  12. @end
  13. #endif // IOS_CHROME_APP_FEED_APP_AGENT_H_