| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 #ifndef CHROME_COMMON_NAVIGATION_TYPES_H_ | 5 #ifndef CONTENT_COMMON_NAVIGATION_TYPES_H_ |
| 6 #define CHROME_COMMON_NAVIGATION_TYPES_H_ | 6 #define CONTENT_COMMON_NAVIGATION_TYPES_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 | 10 |
| 11 // Indicates different types of navigations that can occur that we will handle | 11 // Indicates different types of navigations that can occur that we will handle |
| 12 // separately. | 12 // separately. |
| 13 class NavigationType { | 13 class NavigationType { |
| 14 public: | 14 public: |
| 15 enum Type { | 15 enum Type { |
| 16 // Unknown type. | 16 // Unknown type. |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 NAV_IGNORE, | 57 NAV_IGNORE, |
| 58 }; | 58 }; |
| 59 | 59 |
| 60 private: | 60 private: |
| 61 // This class is for scoping only, so you shouldn't create an instance of it. | 61 // This class is for scoping only, so you shouldn't create an instance of it. |
| 62 NavigationType() {} | 62 NavigationType() {} |
| 63 | 63 |
| 64 DISALLOW_COPY_AND_ASSIGN(NavigationType); | 64 DISALLOW_COPY_AND_ASSIGN(NavigationType); |
| 65 }; | 65 }; |
| 66 | 66 |
| 67 #endif // CHROME_COMMON_NAVIGATION_TYPES_H_ | 67 #endif // CONTENT_COMMON_NAVIGATION_TYPES_H_ |
| OLD | NEW |