6dddd1dd2676d0eab5e4882b95c8bdcf8d09564e
[googlelatitude] / src / daemon / customuseragentpage.h
1 #ifndef CUSTOMUSERAGENTPAGE_H
2 #define CUSTOMUSERAGENTPAGE_H
3
4 #include <QWebPage>
5
6 class customUAPage : public QWebPage
7 {
8     Q_OBJECT
9
10 public:
11     customUAPage(QObject* parent = 0) : QWebPage(parent) {}
12
13 protected:
14     QString userAgentForUrl(const QUrl &url ) const
15         {return QString("Mozilla/5.0 (%Platform%; %Security%; %Subplatform%; %Locale%) AppleWebKit/%WebKitVersion% (KHTML, like Gecko) %AppVersion Mobile");}
16
17 };
18
19 #endif // CUSTOMUSERAGENTPAGE_H