Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(57)

Unified Diff: content/public/common/page_transition_types.h

Issue 8381024: more content exports. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: don't link installer_unittests, setup against content Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/public/common/content_switches.h ('k') | ipc/ipc_message_macros.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 8af1c75d3ec8f83d4b1b79a3a99c464364cbd9dd..234dfe286c964e0164ddb924e0fac7b69774b421 100644
--- a/content/public/common/page_transition_types.h
+++ b/content/public/common/page_transition_types.h
@@ -133,24 +133,26 @@ enum PageTransition {
};
// Simplifies the provided transition by removing any qualifier
-PageTransition PageTransitionStripQualifier(PageTransition type);
+CONTENT_EXPORT PageTransition PageTransitionStripQualifier(
+ PageTransition type);
bool PageTransitionIsValidType(int32 type);
-PageTransition PageTransitionFromInt(int32 type);
+CONTENT_EXPORT PageTransition PageTransitionFromInt(int32 type);
// Returns true if the given transition is a top-level frame transition, or
// false if the transition was for a subframe.
-bool PageTransitionIsMainFrame(PageTransition type);
+CONTENT_EXPORT bool PageTransitionIsMainFrame(PageTransition type);
// Returns whether a transition involves a redirection
-bool PageTransitionIsRedirect(PageTransition type);
+CONTENT_EXPORT bool PageTransitionIsRedirect(PageTransition type);
// Return the qualifier
-int32 PageTransitionGetQualifier(PageTransition type);
+CONTENT_EXPORT int32 PageTransitionGetQualifier(PageTransition type);
// Return a string version of the core type values.
-const char* PageTransitionGetCoreTransitionString(PageTransition type);
+CONTENT_EXPORT const char* PageTransitionGetCoreTransitionString(
+ PageTransition type);
} // namespace content
« no previous file with comments | « content/public/common/content_switches.h ('k') | ipc/ipc_message_macros.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698