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

Side by Side Diff: chrome/browser/ui/views/tabs/tab_renderer_data.cc

Issue 1545153002: Switch to standard integer types in chrome/browser/ui/views/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 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/browser/ui/views/tabs/tab_renderer_data.h" 5 #include "chrome/browser/ui/views/tabs/tab_renderer_data.h"
6 6
7 #include "base/process/kill.h" 7 #include "base/process/kill.h"
8 #include "build/build_config.h"
8 9
9 TabRendererData::TabRendererData() 10 TabRendererData::TabRendererData()
10 : network_state(NETWORK_STATE_NONE), 11 : network_state(NETWORK_STATE_NONE),
11 loading(false), 12 loading(false),
12 crashed_status(base::TERMINATION_STATUS_STILL_RUNNING), 13 crashed_status(base::TERMINATION_STATUS_STILL_RUNNING),
13 incognito(false), 14 incognito(false),
14 show_icon(true), 15 show_icon(true),
15 pinned(false), 16 pinned(false),
16 blocked(false), 17 blocked(false),
17 app(false), 18 app(false),
(...skipping 21 matching lines...) Expand all
39 url == data.url && 40 url == data.url &&
40 loading == data.loading && 41 loading == data.loading &&
41 crashed_status == data.crashed_status && 42 crashed_status == data.crashed_status &&
42 incognito == data.incognito && 43 incognito == data.incognito &&
43 show_icon == data.show_icon && 44 show_icon == data.show_icon &&
44 pinned == data.pinned && 45 pinned == data.pinned &&
45 blocked == data.blocked && 46 blocked == data.blocked &&
46 app == data.app && 47 app == data.app &&
47 media_state == data.media_state; 48 media_state == data.media_state;
48 } 49 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/tabs/tab_drag_controller_interactive_uitest.cc ('k') | chrome/browser/ui/views/tabs/tab_strip.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698