Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1785)

Side by Side Diff: chrome/browser/extensions/extension_error_reporter.h

Issue 1705009: Changing linux platform for chromeos. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:mergeinfo
OLDNEW
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_ERROR_REPORTER_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_ERROR_REPORTER_H_
6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_ERROR_REPORTER_H_ 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_ERROR_REPORTER_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 class MessageLoop; 11 class MessageLoop;
12 12
13 // Exposes an easy way for the various components of the extension system to 13 // Exposes an easy way for the various components of the extension system to
14 // report errors. This is a singleton that lives on the UI thread, with the 14 // report errors. This is a singleton that lives on the UI thread, with the
15 // exception of ReportError() which may be called from any thread. 15 // exception of ReportError() which may be called from any thread.
16 // TODO(aa): Hook this up to about:extensions, when we have about:extensions. 16 // TODO(aa): Hook this up to about:extensions, when we have about:extensions.
(...skipping 23 matching lines...) Expand all
40 private: 40 private:
41 static ExtensionErrorReporter* instance_; 41 static ExtensionErrorReporter* instance_;
42 42
43 explicit ExtensionErrorReporter(bool enable_noisy_errors); 43 explicit ExtensionErrorReporter(bool enable_noisy_errors);
44 44
45 MessageLoop* ui_loop_; 45 MessageLoop* ui_loop_;
46 std::vector<std::string> errors_; 46 std::vector<std::string> errors_;
47 bool enable_noisy_errors_; 47 bool enable_noisy_errors_;
48 }; 48 };
49 49
50 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_ERROR_REPORTER_H_ 50 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_ERROR_REPORTER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698