OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:shouldTrackVisitedLinks
(Results
1 - 9
of
9
) sorted by null
/external/webkit/Source/WebKit2/UIProcess/
WebHistoryClient.h
48
bool
shouldTrackVisitedLinks
() const { return m_client.populateVisitedLinks; }
WebContext.cpp
197
sendToAllProcesses(Messages::WebProcess::SetShouldTrackVisitedLinks(m_historyClient.
shouldTrackVisitedLinks
()));
232
parameters.
shouldTrackVisitedLinks
= m_historyClient.
shouldTrackVisitedLinks
();
/external/webkit/Source/WebKit2/Shared/
WebProcessCreationParameters.cpp
34
:
shouldTrackVisitedLinks
(false)
58
encoder->encode(
shouldTrackVisitedLinks
);
106
if (!decoder->decode(parameters.
shouldTrackVisitedLinks
))
WebProcessCreationParameters.h
66
bool
shouldTrackVisitedLinks
;
/external/webkit/Source/WebCore/page/
PageGroup.cpp
60
static bool
shouldTrackVisitedLinks
= false;
283
if (
shouldTrackVisitedLinks
)
289
ASSERT(
shouldTrackVisitedLinks
);
300
if (!
shouldTrackVisitedLinks
)
308
if (!
shouldTrackVisitedLinks
)
331
if (
shouldTrackVisitedLinks
== shouldTrack)
333
shouldTrackVisitedLinks
= shouldTrack;
334
if (!
shouldTrackVisitedLinks
)
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundlePrivate.h
39
WK_EXPORT void WKBundleSetShouldTrackVisitedLinks(WKBundleRef bundle, bool
shouldTrackVisitedLinks
);
WKBundle.cpp
61
void WKBundleSetShouldTrackVisitedLinks(WKBundleRef bundleRef, bool
shouldTrackVisitedLinks
)
63
toImpl(bundleRef)->setShouldTrackVisitedLinks(
shouldTrackVisitedLinks
);
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundle.cpp
95
void InjectedBundle::setShouldTrackVisitedLinks(bool
shouldTrackVisitedLinks
)
97
PageGroup::setShouldTrackVisitedLinks(
shouldTrackVisitedLinks
);
/external/webkit/Source/WebKit2/WebProcess/
WebProcess.cpp
200
setShouldTrackVisitedLinks(parameters.
shouldTrackVisitedLinks
);
234
void WebProcess::setShouldTrackVisitedLinks(bool
shouldTrackVisitedLinks
)
236
PageGroup::setShouldTrackVisitedLinks(
shouldTrackVisitedLinks
);
Completed in 397 milliseconds