OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 package org.chromium.chrome.browser; | 5 package org.chromium.chrome.browser; |
6 | 6 |
7 public class ActivityTypeIds { | 7 public class TabLoadStatus { |
8 #define DEFINE_ACTIVITY_ID(id,value) public static final int ACTIVITY_##id = val
ue; | 8 #define DEFINE_TAB_LOAD_STATUS(name,value) \ |
9 #include "chrome/browser/android/activity_type_id_list.h" | 9 public static final int name = value; |
10 #undef DEFINE_ACTIVITY_ID | 10 #include "chrome/browser/android/tab_load_status.h" |
11 } | 11 } |
OLD | NEW |