diff options
author | Alex Buynytskyy <alexbuy@google.com> | 2020-04-22 16:08:50 -0700 |
---|---|---|
committer | Alex Buynytskyy <alexbuy@google.com> | 2020-04-23 19:38:44 +0000 |
commit | ea1390ff324a8efab225955e507911bb1c44bca2 (patch) | |
tree | f555dcac42f4343663db8cf703f9a8f96c477c44 /services/incremental/IncrementalService.h | |
parent | eab14fca5dadd2b6f57ff37cce8ce2558c8b94f6 (diff) |
Keep only service binding in DataLoaderManager.
This simplifies:
- resource management - no extra copies of controls,
- state management - all states in one place, no more hidden (bound but
not created) state.
Bug: b/153874006
Test: atest PackageManagerShellCommandTest PackageManagerShellCommandIncrementalTest IncrementalServiceTest
Change-Id: I3d16a099c7f42fcf14637c5a8e96bd6f99e073d1
Diffstat (limited to 'services/incremental/IncrementalService.h')
-rw-r--r-- | services/incremental/IncrementalService.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/services/incremental/IncrementalService.h b/services/incremental/IncrementalService.h index 0a18e21e9d6d..1de00700cad0 100644 --- a/services/incremental/IncrementalService.h +++ b/services/incremental/IncrementalService.h @@ -180,6 +180,7 @@ private: bool isValid() const { return mId != kInvalidStorageId; } + bool bind(); bool create(); bool start(); bool destroy(); |