| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 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 var chrome; | 5 var chrome; |
| 6 if (!chrome) | 6 if (!chrome) |
| 7 chrome = {}; | 7 chrome = {}; |
| 8 if (!chrome.searchBox) { | 8 if (!chrome.searchBox) { |
| 9 chrome.searchBox = new function() { | 9 chrome.searchBox = new function() { |
| 10 // ========================================================================= | 10 // ========================================================================= |
| 11 // Constants | 11 // Constants |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 }; | 205 }; |
| 206 this.onchange = null; | 206 this.onchange = null; |
| 207 this.onsubmit = null; | 207 this.onsubmit = null; |
| 208 this.oncancel = null; | 208 this.oncancel = null; |
| 209 this.onresize = null; | 209 this.onresize = null; |
| 210 this.onautocompleteresults = null; | 210 this.onautocompleteresults = null; |
| 211 this.onkeypress = null; | 211 this.onkeypress = null; |
| 212 this.oncontextchange = null; | 212 this.oncontextchange = null; |
| 213 }; | 213 }; |
| 214 } | 214 } |
| OLD | NEW |