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

Side by Side Diff: chrome/renderer/resources/extensions/searchbox_api.js

Issue 11421079: Persist the Instant API to committed search result pages. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More fixes Created 8 years 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
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698