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

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

Issue 12386019: Instant: Use only one hidden WebContents per profile. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 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 #include "chrome/common/instant_types.h" 5 #include "chrome/common/instant_types.h"
6 6
7 InstantSuggestion::InstantSuggestion() 7 InstantSuggestion::InstantSuggestion()
8 : behavior(INSTANT_COMPLETE_NOW), 8 : behavior(INSTANT_COMPLETE_NOW),
9 type(INSTANT_SUGGESTION_SEARCH) { 9 type(INSTANT_SUGGESTION_SEARCH) {
10 } 10 }
(...skipping 23 matching lines...) Expand all
34 color_b(0), 34 color_b(0),
35 color_a(0), 35 color_a(0),
36 image_horizontal_alignment(THEME_BKGRND_IMAGE_ALIGN_CENTER), 36 image_horizontal_alignment(THEME_BKGRND_IMAGE_ALIGN_CENTER),
37 image_vertical_alignment(THEME_BKGRND_IMAGE_ALIGN_CENTER), 37 image_vertical_alignment(THEME_BKGRND_IMAGE_ALIGN_CENTER),
38 image_tiling(THEME_BKGRND_IMAGE_NO_REPEAT), 38 image_tiling(THEME_BKGRND_IMAGE_NO_REPEAT),
39 image_height(0) { 39 image_height(0) {
40 } 40 }
41 41
42 ThemeBackgroundInfo::~ThemeBackgroundInfo() { 42 ThemeBackgroundInfo::~ThemeBackgroundInfo() {
43 } 43 }
44
45 MostVisitedItem::MostVisitedItem() {
46 }
47
48 MostVisitedItem::MostVisitedItem(const GURL& in_url, const string16& in_title)
49 : url(in_url),
50 title(in_title) {
51 }
52
53 MostVisitedItem::~MostVisitedItem() {
54 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698