| Index: content/public/common/page_transition_types.h
|
| diff --git a/content/public/common/page_transition_types.h b/content/public/common/page_transition_types.h
|
| index acb894b4760f90b2bd8128ffb4e3ffc39cf8f02f..95f1dd1723b65e0011203b00967e8b7e5cb3eaf7 100644
|
| --- a/content/public/common/page_transition_types.h
|
| +++ b/content/public/common/page_transition_types.h
|
| @@ -38,6 +38,13 @@ CONTENT_EXPORT bool PageTransitionIsMainFrame(PageTransition type);
|
| // Returns whether a transition involves a redirection
|
| CONTENT_EXPORT bool PageTransitionIsRedirect(PageTransition type);
|
|
|
| +// Returns whether a transition involves a forward or back navigation.
|
| +CONTENT_EXPORT bool PageTransitionIsForwardBack(PageTransition type);
|
| +
|
| +// Returns whether a transition is a new navigation (rather than a return
|
| +// to a previously committed navigation).
|
| +CONTENT_EXPORT bool PageTransitionIsNewNavigation(PageTransition type);
|
| +
|
| // Return the qualifier
|
| CONTENT_EXPORT int32 PageTransitionGetQualifier(PageTransition type);
|
|
|
|
|