summaryrefslogtreecommitdiffstats
path: root/chrome/utility/safe_json_parser_handler.h
blob: 8eeaf3e7d30522107e35178caf7f27f6adb64338 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// 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.

#ifndef CHROME_UTILITY_SAFE_JSON_PARSER_HANDLER_H_
#define CHROME_UTILITY_SAFE_JSON_PARSER_HANDLER_H_

#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "chrome/utility/utility_message_handler.h"

namespace safe_json {
class SafeJsonParserMessageFilter;
}  // namespace safe_json

// Dispatches IPCs for out of process JSON parsing. This is an adapter class
// that delegates to safe_json::SafeJsonParserMessageFilter, since the
// SafeJsonParserMessageFilter in //components/safe_json can't directly
// depend on //chrome/utility.
class SafeJsonParserHandler : public UtilityMessageHandler {
 public:
  SafeJsonParserHandler();
  ~SafeJsonParserHandler() override;

  // UtilityMessageHandler
  bool OnMessageReceived(const IPC::Message& message) override;

 private:
  scoped_ptr<safe_json::SafeJsonParserMessageFilter> handler_;

  DISALLOW_COPY_AND_ASSIGN(SafeJsonParserHandler);
};

#endif  // CHROME_UTILITY_SAFE_JSON_PARSER_HANDLER_H_