| OLD | NEW |
| 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 package org.chromium.content_public.browser; | 5 package org.chromium.ui.base; |
| 6 | 6 |
| 7 public class PageTransitionTypes { | 7 public class PageTransitionTypes { |
| 8 #define PAGE_TRANSITION(label, value) public static final int \ | 8 #define PAGE_TRANSITION(label, value) public static final int \ |
| 9 PAGE_TRANSITION_ ## label = value; | 9 PAGE_TRANSITION_ ## label = value; |
| 10 #include "content/public/common/page_transition_types_list.h" | 10 #include "ui/base/page_transition_types_list.h" |
| 11 #undef PAGE_TRANSITION | 11 #undef PAGE_TRANSITION |
| 12 } | 12 } |
| OLD | NEW |