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 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 }; | 207 }; |
208 this.onchange = null; | 208 this.onchange = null; |
209 this.onsubmit = null; | 209 this.onsubmit = null; |
210 this.oncancel = null; | 210 this.oncancel = null; |
211 this.onresize = null; | 211 this.onresize = null; |
212 this.onautocompleteresults = null; | 212 this.onautocompleteresults = null; |
213 this.onkeypress = null; | 213 this.onkeypress = null; |
214 this.oncontextchange = null; | 214 this.oncontextchange = null; |
215 }; | 215 }; |
216 } | 216 } |
OLD | NEW |