blob: 28a5e6938a127f52256e42332806798c8c7a51e1 [file] [log] [blame]
// Copyright 2018 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.
package org.chromium.chrome.browser.dependency_injection;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import javax.inject.Scope;
/**
* Scope of components living as long as activities associated with them live.
* Can be used for all activities, since there is no way for components of different activities (as
* well as different instances of the same activity) to communicate with each other via Dagger.
*/
@Scope
@Retention(RetentionPolicy.SOURCE)
public @interface ActivityScope {}