OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ErrorMap
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/extensions/browser/
error_map.h
20
// An
ErrorMap
is responsible for storing Extension-related errors, keyed by
21
// Extension ID. The errors are owned by the
ErrorMap
, and are deleted upon
23
class
ErrorMap
{
25
ErrorMap
();
26
~
ErrorMap
();
31
// Add the |error| to the
ErrorMap
.
34
// Remove an extension from the
ErrorMap
, deleting all associated errors.
68
// owned by the Entry (in turn owned by the
ErrorMap
) and are deleted upon
79
DISALLOW_COPY_AND_ASSIGN(
ErrorMap
);
error_map.cc
22
//
ErrorMap
::ExtensionEntry
23
ErrorMap
::ExtensionEntry::ExtensionEntry() {
26
ErrorMap
::ExtensionEntry::~ExtensionEntry() {
30
void
ErrorMap
::ExtensionEntry::DeleteAllErrors() {
35
void
ErrorMap
::ExtensionEntry::DeleteIncognitoErrors() {
47
void
ErrorMap
::ExtensionEntry::DeleteErrorsOfType(ExtensionError::Type type) {
59
const ExtensionError*
ErrorMap
::ExtensionEntry::AddError(
86
//
ErrorMap
87
ErrorMap
::
ErrorMap
() {
[
all
...]
/external/chromium_org/content/public/test/
test_file_error_injector.h
69
typedef std::map<std::string, FileErrorInfo>
ErrorMap
;
129
ErrorMap
injected_errors_;
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/
fake_pepper_interface_url_loader.h
81
typedef std::map<std::string, int>
ErrorMap
;
83
ErrorMap
error_map_;
/external/chromium_org/chrome/browser/chromeos/mobile/
mobile_activator.h
45
typedef std::map<std::string, std::string>
ErrorMap
;
49
void SetErrorMap(const
ErrorMap
& map);
53
ErrorMap
error_map_;
Completed in 281 milliseconds