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

Side by Side Diff: chrome/common/instant_types.cc

Issue 10809063: Adding Javascript support for the Extended Searchbox API. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Remove test for older API, removed in this CL. Created 8 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/common/instant_types.h"
6
7 InstantNativeSuggestionsParts::InstantNativeSuggestionsParts() {
sky 2012/07/24 21:14:32 Make order match header (meaning InstantSuggestion
Shishir 2012/07/24 21:31:37 Done.
8 }
9
10 InstantNativeSuggestionsParts::~InstantNativeSuggestionsParts() {
11 }
12
13 InstantSuggestion::InstantSuggestion() : behavior(INSTANT_COMPLETE_NOW),
sky 2012/07/24 21:14:32 wrap this to next line (like you did at 20).
Shishir 2012/07/24 21:31:37 Done.
14 type(INSTANT_SUGGESTION_SEARCH) {
15 }
16
17 InstantSuggestion::InstantSuggestion(const std::string& in_text,
18 InstantCompleteBehavior in_behavior,
19 InstantSuggestionType in_type)
20 : text(in_text),
21 behavior(in_behavior),
22 type(in_type) {
23 }
24
25 InstantSuggestion::~InstantSuggestion() {
26 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698