summaryrefslogtreecommitdiffstats
path: root/chrome/browser/memory/tab_stats.cc
blob: 99565e37f6631dd24e45d7abdcb1c58eb977939f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "build/build_config.h"
#include "chrome/browser/memory/tab_stats.h"

namespace memory {

TabStats::TabStats()
    : is_app(false),
      is_internal_page(false),
      is_playing_audio(false),
      is_pinned(false),
      is_selected(false),
      is_discarded(false),
      has_form_entry(false),
      discard_count(0),
      renderer_handle(0),
      child_process_host_id(0),
#if defined(OS_CHROMEOS)
      oom_score(0),
#endif
      tab_contents_id(0) {
}

TabStats::~TabStats() {
}

}  // namespace memory