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

Unified Diff: ui/base/x/x11_util_internal.h

Issue 7889040: Change X11 error handler override to allow easy X11 error checking. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: ui/base/x/x11_util_internal.h
diff --git a/ui/base/x/x11_util_internal.h b/ui/base/x/x11_util_internal.h
index 70eb088c786e8668e48eb2f65f14f0d0a425a423..bfa381b78adcae58bbcb44c789ea35c44d560ea5 100644
--- a/ui/base/x/x11_util_internal.h
+++ b/ui/base/x/x11_util_internal.h
@@ -50,6 +50,19 @@ UI_EXPORT void SetX11ErrorHandlers(XErrorHandler error_handler,
UI_EXPORT void LogErrorEventDescription(Display* dpy,
const XErrorEvent& error_event);
+class ScopedX11ErrorHandlerOverride {
+ public:
+ ScopedX11ErrorHandlerOverride(XErrorHandler error_handler,
+ XIOErrorHandler io_error_handler);
+ ~ScopedX11ErrorHandlerOverride();
+
+ private:
+ XErrorHandler old_error_handler_;
+ XIOErrorHandler old_io_error_handler_;
+
+ DISALLOW_IMPLICIT_CONSTRUCTORS(ScopedX11ErrorHandlerOverride);
+};
+
} // namespace ui
#endif // UI_BASE_X_X11_UTIL_INTERNAL_H_

Powered by Google App Engine
This is Rietveld 408576698