Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(181)

Unified Diff: content/browser/cache_storage/cache_storage_scheduler_client.h

Issue 2168123002: [CacheStorage] Add metrics to the scheduler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add unit Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/cache_storage/cache_storage_scheduler_client.h
diff --git a/content/browser/cache_storage/cache_storage_scheduler_client.h b/content/browser/cache_storage/cache_storage_scheduler_client.h
new file mode 100644
index 0000000000000000000000000000000000000000..67db7e41e4865db1ecb7467554f99dc143b617d5
--- /dev/null
+++ b/content/browser/cache_storage/cache_storage_scheduler_client.h
@@ -0,0 +1,18 @@
+// Copyright 2016 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.
+
+#ifndef CONTENT_BROWSER_CACHE_STORAGE_SCHEDULER_CLIENT_H_
+#define CONTENT_BROWSER_CACHE_STORAGE_SCHEDULER_CLIENT_H_
+
+namespace content {
+
+enum class CacheStorageSchedulerClient {
+ CLIENT_STORAGE = 0,
+ CLIENT_CACHE = 1,
+ CLIENT_BACKGROUND_SYNC = 2
+};
+
+} // namespace content
+
+#endif // CONTENT_BROWSER_CACHE_STORAGE_SCHEDULER_CLIENT_H_

Powered by Google App Engine
This is Rietveld 408576698