blob: 883abecdb9fd5646b17e999bb6d4d81b9dd99c5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef EXTENSIONS_BROWSER_EXTENSION_FUNCTION_CONSTANTS_H_
#define EXTENSIONS_BROWSER_EXTENSION_FUNCTION_CONSTANTS_H_
namespace extensions {
namespace function_constants {
// TODO(devlin): Move ExtensionFunction::kUnknownErrorDoNotUse here.
extern const char kCouldNotFindSenderWebContents[];
} // namespace function_constants
} // namespace extensions
#endif // EXTENSIONS_BROWSER_EXTENSION_FUNCTION_CONSTANTS_H_
|