diff options
author | jkarlin <jkarlin@chromium.org> | 2015-03-26 06:58:50 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-03-26 13:59:23 +0000 |
commit | 34ee23cfb4147f51b8ca0f728e6354f8f86db8ee (patch) | |
tree | dca270c6f62113380153fe6d2561874de01b64a1 /content/browser/background_sync/BUILD.gn | |
parent | 556a2bfd2354ff3d39383c53aa911fd0c06b40b3 (diff) | |
download | chromium_src-34ee23cfb4147f51b8ca0f728e6354f8f86db8ee.zip chromium_src-34ee23cfb4147f51b8ca0f728e6354f8f86db8ee.tar.gz chromium_src-34ee23cfb4147f51b8ca0f728e6354f8f86db8ee.tar.bz2 |
[BackgroundSync] Initial land of the BackgroundSyncManager
The BackgroundSyncManager is the class that handles registration of
background syncs. This first CL handles storage and retrieval of
registrations and sequential ordering of async operations. Future CLs
will add permission checks and incorporate a scheduler.
Eventually the BackgroundSyncManager will be created and owned by the
BackgroundSyncMessageFilter, which will be owned by the RenderViewHost.
BackgroundSync Design Doc: https://docs.google.com/document/d/1MAuNzV0q5FporLZVJMh7CMrwTHwcZsWX6YUwPwKMGco/
BUG=449443
Review URL: https://codereview.chromium.org/950343006
Cr-Commit-Position: refs/heads/master@{#322375}
Diffstat (limited to 'content/browser/background_sync/BUILD.gn')
-rw-r--r-- | content/browser/background_sync/BUILD.gn | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/content/browser/background_sync/BUILD.gn b/content/browser/background_sync/BUILD.gn new file mode 100644 index 0000000..55aeded --- /dev/null +++ b/content/browser/background_sync/BUILD.gn @@ -0,0 +1,11 @@ +# Copyright 2015 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. + +import("//third_party/protobuf/proto_library.gni") + +proto_library("background_sync_proto") { + sources = [ + "background_sync.proto", + ] +} |