summaryrefslogtreecommitdiffstats
path: root/extensions/browser/extension_error_test_util.h
blob: 4866cefe25b43934427e3d997e4e2d54a1b41278 (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
35
// Copyright 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 EXTENSIONS_BROWSER_EXTENSION_ERROR_TEST_UTIL_H_
#define EXTENSIONS_BROWSER_EXTENSION_ERROR_TEST_UTIL_H_

#include <string>

#include "base/memory/scoped_ptr.h"

namespace extensions {

class ExtensionError;

namespace error_test_util {

// Create a new RuntimeError.
scoped_ptr<ExtensionError> CreateNewRuntimeError(
    const std::string& extension_id,
    const std::string& message,
    bool from_incognito);

// Create a new RuntimeError; incognito defaults to "false".
scoped_ptr<ExtensionError> CreateNewRuntimeError(
    const std::string& extension_id, const std::string& message);

// Create a new ManifestError.
scoped_ptr<ExtensionError> CreateNewManifestError(
    const std::string& extension_id, const std::string& mnessage);

}  // namespace error_test_util
}  // namespace extensions

#endif  // EXTENSIONS_BROWSER_EXTENSION_ERROR_TEST_UTIL_H_