HomeSort by relevance Sort by last modified time
    Searched defs:ErrorConsole (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/chrome/browser/extensions/error_console/
error_console.cc 37 void DeleteIncognitoErrorsFromList(ErrorConsole::ErrorList* list) {
38 ErrorConsole::ErrorList::iterator iter = list->begin();
51 void DeleteErrorsOfTypeFromList(ErrorConsole::ErrorList* list,
53 ErrorConsole::ErrorList::iterator iter = list->begin();
64 base::LazyInstance<ErrorConsole::ErrorList> g_empty_error_list =
69 void ErrorConsole::Observer::OnErrorConsoleDestroyed() {
72 ErrorConsole::ErrorConsole(Profile* profile,
82 // the ErrorConsole will never be enabled.
88 base::Bind(&ErrorConsole::OnPrefChanged
    [all...]
error_console.h 34 // The ErrorConsole is a central object to which all extension errors are
39 class ErrorConsole : public content::NotificationObserver {
54 explicit ErrorConsole(Profile* profile, ExtensionService* extension_service);
55 virtual ~ErrorConsole();
57 // Convenience method to return the ErrorConsole for a given profile.
58 static ErrorConsole* Get(Profile* profile);
67 // Add or remove observers of the ErrorConsole to be notified of any errors
116 // The list of all observers for the ErrorConsole.
122 // The profile with which the ErrorConsole is associated. Only collect errors
130 DISALLOW_COPY_AND_ASSIGN(ErrorConsole);
    [all...]

Completed in 1395 milliseconds