OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WebNotification
(Results
1 - 10
of
10
) sorted by null
/external/webkit/Source/WebKit/chromium/public/
WebNotification.h
49
class
WebNotification
{
51
WebNotification
() : m_private(0) { }
52
WebNotification
(const
WebNotification
& other) : m_private(0) { assign(other); }
54
~
WebNotification
() { reset(); }
57
WEBKIT_API void assign(const
WebNotification
&);
59
WebNotification
& operator=(const
WebNotification
& other)
65
// Operators required to put
WebNotification
in an ordered map.
66
bool equals(const
WebNotification
& other) const { return m_private == other.m_private;
[
all
...]
WebNotificationPresenter.h
41
class
WebNotification
;
54
virtual bool show(const
WebNotification
&) = 0;
57
virtual void cancel(const
WebNotification
&) = 0;
61
virtual void objectDestroyed(const
WebNotification
&) = 0;
/external/webkit/Source/WebKit/chromium/src/
WebNotification.cpp
32
#include "
WebNotification
.h"
52
void
WebNotification
::reset()
57
void
WebNotification
::assign(const
WebNotification
& other)
65
bool
WebNotification
::lessThan(const
WebNotification
& other) const
70
bool
WebNotification
::isHTML() const
75
WebURL
WebNotification
::url() const
81
WebURL
WebNotification
::iconURL() const
87
WebString
WebNotification
::title() cons
[
all
...]
/external/webkit/Source/WebKit/win/
WebNotification.cpp
29
#include "
WebNotification
.h"
33
//
WebNotification
------------------------------------------------------------
35
WebNotification
::
WebNotification
(BSTR name, IUnknown* anObject, IPropertyBag* userInfo)
49
gClassNameCount.add("
WebNotification
");
52
WebNotification
::~
WebNotification
()
62
gClassNameCount.remove("
WebNotification
");
65
WebNotification
*
WebNotification
::createInstance(BSTR name /*=0*/, IUnknown* anObject /*=0*/, IPropertyBag* userInfo /*=0*/
[
all
...]
WebNotification.h
31
class
WebNotification
: public IWebNotification
34
static
WebNotification
* createInstance(BSTR name = 0, IUnknown* anObject = 0, IPropertyBag* userInfo = 0);
36
WebNotification
(BSTR name, IUnknown* anObject, IPropertyBag* userInfo);
37
~
WebNotification
();
WebNotificationCenter.cpp
30
#include "
WebNotification
.h"
185
COMPtr<
WebNotification
> notification(AdoptCOM,
WebNotification
::createInstance(notificationName, anObject, userInfo));
/external/webkit/Tools/DumpRenderTree/chromium/
NotificationPresenter.h
34
#include "
WebNotification
.h"
55
virtual bool show(const WebKit::
WebNotification
&);
56
virtual void cancel(const WebKit::
WebNotification
&);
57
virtual void objectDestroyed(const WebKit::
WebNotification
&);
71
HashMap<WTF::String, WebKit::
WebNotification
> m_activeNotifications;
NotificationPresenter.cpp
36
#include "
WebNotification
.h"
47
static WebString identifierForNotification(const
WebNotification
& notification)
56
WebNotification
* notification = static_cast<
WebNotification
*>(context);
74
const
WebNotification
& notification = m_activeNotifications.find(id)->second;
75
WebNotification
eventTarget(notification);
81
bool NotificationPresenter::show(const
WebNotification
& notification)
110
webKitClient()->callOnMainThread(deferredDisplayDispatch, new
WebNotification
(notification));
114
void NotificationPresenter::cancel(const
WebNotification
& notification)
118
WebNotification
eventTarget(notification)
[
all
...]
/external/webkit/Source/WebKit/win/WebCoreSupport/
WebEditorClient.h
35
class
WebNotification
;
71
void webViewDidChangeTypingStyle(
WebNotification
*);
72
void webViewDidChangeSelection(
WebNotification
*);
WebEditorClient.cpp
31
#include "
WebNotification
.h"
287
void WebEditorClient::webViewDidChangeTypingStyle(
WebNotification
* /*notification*/)
290
void WebEditorClient::webViewDidChangeSelection(
WebNotification
* /*notification*/)
Completed in 64 milliseconds