OLD | NEW |
---|---|
(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 } | |
OLD | NEW |