1// Copyright 2013 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef CHROME_BROWSER_UI_WEBUI_SYNC_FILE_SYSTEM_INTERNALS_DUMP_DATABASE_HANDLER_H_
6#define CHROME_BROWSER_UI_WEBUI_SYNC_FILE_SYSTEM_INTERNALS_DUMP_DATABASE_HANDLER_H_
7
8#include "base/compiler_specific.h"
9#include "content/public/browser/web_ui_message_handler.h"
10
11class Profile;
12
13namespace syncfs_internals {
14
15class DumpDatabaseHandler : public content::WebUIMessageHandler {
16 public:
17  explicit DumpDatabaseHandler(Profile* profile);
18  virtual ~DumpDatabaseHandler();
19
20  // WebUIMessageHandler implementation.
21  virtual void RegisterMessages() OVERRIDE;
22
23 private:
24  void GetDatabaseDump(const base::ListValue* args);
25  void DidGetDatabaseDump(const base::ListValue& list);
26
27  Profile* profile_;
28
29  DISALLOW_COPY_AND_ASSIGN(DumpDatabaseHandler);
30};
31
32}  // namespace syncfs_internals
33
34#endif  // CHROME_BROWSER_UI_WEBUI_SYNC_FILE_SYSTEM_INTERNALS_DUMP_DATABASE_HANDLER_H_
35