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

Unified Diff: content/browser/service_worker/service_worker_internals_ui.h

Issue 182383008: Create chrome://serviceworker-internals (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix nits Created 6 years, 9 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/service_worker/service_worker_internals_ui.h
diff --git a/content/browser/service_worker/service_worker_internals_ui.h b/content/browser/service_worker/service_worker_internals_ui.h
new file mode 100644
index 0000000000000000000000000000000000000000..a4ea0a456f6ee0b54adbee76caaec9d615743386
--- /dev/null
+++ b/content/browser/service_worker/service_worker_internals_ui.h
@@ -0,0 +1,54 @@
+// Copyright (c) 2014 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_SERVICE_WORKER_SERVICE_WORKER_INTERNALS_UI_H_
+#define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_INTERNALS_UI_H_
+
+#include "base/files/file_path.h"
+#include "base/memory/ref_counted.h"
+#include "base/memory/scoped_ptr.h"
+#include "base/memory/weak_ptr.h"
+#include "content/common/service_worker/service_worker_status_code.h"
+#include "content/public/browser/web_ui_controller.h"
+
+namespace base {
+class ListValue;
+class DictionaryValue;
+}
+
+namespace content {
+
+class StoragePartition;
+class ServiceWorkerContextWrapper;
+class ServiceWorkerRegistration;
+class ServiceWorkerVersion;
+
+class ServiceWorkerInternalsUI
+ : public WebUIController,
+ public base::SupportsWeakPtr<ServiceWorkerInternalsUI> {
+ public:
+ explicit ServiceWorkerInternalsUI(WebUI* web_ui);
+
+ private:
+ class OperationProxy;
+
+ virtual ~ServiceWorkerInternalsUI();
+ void AddContextFromStoragePartition(StoragePartition* partition);
+
+ // Called from Javascript.
+ void GetAllRegistrations(const base::ListValue* args);
+ void StartWorker(const base::ListValue* args);
+ void StopWorker(const base::ListValue* args);
+ void Unregister(const base::ListValue* args);
+
+ bool GetRegistrationInfo(
+ const base::ListValue* args,
+ base::FilePath* partition_path,
+ GURL* scope,
+ scoped_refptr<ServiceWorkerContextWrapper>* context) const;
+};
+
+} // namespace content
+
+#endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_INTERNALS_UI_H_

Powered by Google App Engine
This is Rietveld 408576698