HomeSort by relevance Sort by last modified time
    Searched defs:NavigatorContentUtils (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/modules/navigatorcontentutils/
NavigatorContentUtils.h 30 #include "modules/navigatorcontentutils/NavigatorContentUtilsClient.h"
42 class NavigatorContentUtils FINAL : public NoBaseWillBeGarbageCollectedFinalized<NavigatorContentUtils>, public WillBeHeapSupplement<Page> {
43 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(NavigatorContentUtils);
45 virtual ~NavigatorContentUtils();
47 static NavigatorContentUtils* from(Page&);
54 static PassOwnPtrWillBeRawPtr<NavigatorContentUtils> create(PassOwnPtr<NavigatorContentUtilsClient>);
61 explicit NavigatorContentUtils(PassOwnPtr<NavigatorContentUtilsClient> client)
NavigatorContentUtils.cpp 28 #include "modules/navigatorcontentutils/NavigatorContentUtils.h"
140 NavigatorContentUtils* NavigatorContentUtils::from(Page& page)
142 return static_cast<NavigatorContentUtils*>(WillBeHeapSupplement<Page>::from(page, supplementName()));
145 NavigatorContentUtils::~NavigatorContentUtils()
149 PassOwnPtrWillBeRawPtr<NavigatorContentUtils> NavigatorContentUtils::create(PassOwnPtr<NavigatorContentUtilsClient> client)
151 return adoptPtrWillBeNoop(new NavigatorContentUtils(client))
    [all...]

Completed in 80 milliseconds