OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef WebHistoryCommitType_h | |
6 #define WebHistoryCommitType_h | |
7 | |
8 namespace blink { | |
9 | |
10 enum WebHistoryCommitType { | |
11 WebStandardCommit, | |
12 WebBackForwardCommit, | |
13 WebInitialCommitInChildFrame, | |
14 WebHistoryInertCommit | |
15 }; | |
abarth-chromium
2014/03/27 23:00:47
Can you add some comments explaining what each of
Nate Chapin
2014/03/27 23:27:05
Done.
Please let me know whether they're suffici
| |
16 | |
17 } // namespace blink | |
18 | |
19 #endif | |
OLD | NEW |