OLD | NEW |
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 #ifndef ANDROID_WEBVIEW_BROWSER_STATE_SERIALIZER_H_ | 5 #ifndef ANDROID_WEBVIEW_BROWSER_STATE_SERIALIZER_H_ |
6 #define ANDROID_WEBVIEW_BROWSER_STATE_SERIALIZER_H_ | 6 #define ANDROID_WEBVIEW_BROWSER_STATE_SERIALIZER_H_ |
7 | 7 |
8 #include <cstdint> | 8 #include <cstdint> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 const content::NavigationEntry& entry, | 56 const content::NavigationEntry& entry, |
57 base::Pickle* pickle) WARN_UNUSED_RESULT; | 57 base::Pickle* pickle) WARN_UNUSED_RESULT; |
58 bool RestoreNavigationEntryFromPickle(base::PickleIterator* iterator, | 58 bool RestoreNavigationEntryFromPickle(base::PickleIterator* iterator, |
59 content::NavigationEntry* entry) | 59 content::NavigationEntry* entry) |
60 WARN_UNUSED_RESULT; | 60 WARN_UNUSED_RESULT; |
61 bool RestoreNavigationEntryFromPickle(uint32_t state_version, | 61 bool RestoreNavigationEntryFromPickle(uint32_t state_version, |
62 base::PickleIterator* iterator, | 62 base::PickleIterator* iterator, |
63 content::NavigationEntry* entry) | 63 content::NavigationEntry* entry) |
64 WARN_UNUSED_RESULT; | 64 WARN_UNUSED_RESULT; |
65 | 65 |
66 } // namespace interanl | 66 } // namespace internal |
67 | 67 |
68 } // namespace android_webview | 68 } // namespace android_webview |
69 | 69 |
70 #endif // ANDROID_WEBVIEW_BROWSER_STATE_SERIALIZER_H_ | 70 #endif // ANDROID_WEBVIEW_BROWSER_STATE_SERIALIZER_H_ |
OLD | NEW |