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

Unified Diff: third_party/google_input_tools/third_party/closure_library/closure/goog/debug/logrecord.js

Issue 1257313003: Update Google Input Tools (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Free up grd resources. Created 5 years, 5 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: third_party/google_input_tools/third_party/closure_library/closure/goog/debug/logrecord.js
diff --git a/third_party/google_input_tools/third_party/closure_library/closure/goog/debug/logrecord.js b/third_party/google_input_tools/third_party/closure_library/closure/goog/debug/logrecord.js
index 990af98bf7b352a7251d00f451b49591288397cb..df5f982677bed6e213d4a933b43ef5d40ae23d7e 100644
--- a/third_party/google_input_tools/third_party/closure_library/closure/goog/debug/logrecord.js
+++ b/third_party/google_input_tools/third_party/closure_library/closure/goog/debug/logrecord.js
@@ -91,14 +91,6 @@ goog.debug.LogRecord.prototype.exception_ = null;
/**
- * Exception text associated with the record
- * @type {?string}
- * @private
- */
-goog.debug.LogRecord.prototype.exceptionText_ = null;
-
-
-/**
* @define {boolean} Whether to enable log sequence numbers.
*/
goog.define('goog.debug.LogRecord.ENABLE_SEQUENCE_NUMBERS', true);
@@ -135,7 +127,6 @@ goog.debug.LogRecord.prototype.reset = function(level, msg, loggerName,
this.msg_ = msg;
this.loggerName_ = loggerName;
delete this.exception_;
- delete this.exceptionText_;
};
@@ -170,26 +161,6 @@ goog.debug.LogRecord.prototype.setException = function(exception) {
/**
- * Get the exception text that is part of the log record.
- *
- * @return {?string} Exception text.
- */
-goog.debug.LogRecord.prototype.getExceptionText = function() {
- return this.exceptionText_;
-};
-
-
-/**
- * Set the exception text that is part of the log record.
- *
- * @param {string} text The exception text.
- */
-goog.debug.LogRecord.prototype.setExceptionText = function(text) {
- this.exceptionText_ = text;
-};
-
-
-/**
* Get the source Logger's name.
*
* @param {string} loggerName source logger name (may be null).

Powered by Google App Engine
This is Rietveld 408576698