~unity-team/unity8/trunk

« back to all changes in this revision

Viewing changes to tests/mocks/Utils/plugin.cpp

  • Committer: Bileto Bot
  • Author(s): Michael Zanetti
  • Date: 2016-12-07 13:43:25 UTC
  • mfrom: (2659.5.57 unity8-appdrawer)
  • Revision ID: ci-train-bot@canonical.com-20161207134325-3d9187gz3wuz4fdi
Add the ApplicationDrawer

Approved by: Lukáš Tinkl, Unity8 CI Bot

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
#include <inputeventgenerator.h>
41
41
#include <deviceconfigparser.h>
42
42
#include <globalfunctions.h>
 
43
#include <appdrawerproxymodel.h>
43
44
 
44
45
static QObject *createWindowStateStorage(QQmlEngine *engine, QJSEngine *scriptEngine)
45
46
{
82
83
    qmlRegisterType<DeviceConfigParser>(uri, 0, 1, "DeviceConfigParser");
83
84
    qmlRegisterSingletonType<GlobalFunctions>(uri, 0, 1, "Functions", createGlobalFunctions);
84
85
    qmlRegisterType<URLDispatcher>(uri, 0, 1, "URLDispatcher");
 
86
    qmlRegisterType<AppDrawerProxyModel>(uri, 0, 1, "AppDrawerProxyModel");
85
87
}