Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(113)

Side by Side Diff: Source/modules/notifications/Notification.h

Issue 54053006: Move weborigin/ under platform/ so that it may someday call platform APIs (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * Copyright (C) 2009, 2011, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2009, 2011, 2012 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 23 matching lines...) Expand all
34 34
35 #include "bindings/v8/ScriptWrappable.h" 35 #include "bindings/v8/ScriptWrappable.h"
36 #include "core/dom/ActiveDOMObject.h" 36 #include "core/dom/ActiveDOMObject.h"
37 #include "core/events/EventTarget.h" 37 #include "core/events/EventTarget.h"
38 #include "core/events/ThreadLocalEventNames.h" 38 #include "core/events/ThreadLocalEventNames.h"
39 #include "core/loader/ThreadableLoaderClient.h" 39 #include "core/loader/ThreadableLoaderClient.h"
40 #include "modules/notifications/NotificationClient.h" 40 #include "modules/notifications/NotificationClient.h"
41 #include "platform/AsyncMethodRunner.h" 41 #include "platform/AsyncMethodRunner.h"
42 #include "platform/SharedBuffer.h" 42 #include "platform/SharedBuffer.h"
43 #include "platform/text/TextDirection.h" 43 #include "platform/text/TextDirection.h"
44 #include "weborigin/KURL.h" 44 #include "platform/weborigin/KURL.h"
45 #include "wtf/OwnPtr.h" 45 #include "wtf/OwnPtr.h"
46 #include "wtf/PassRefPtr.h" 46 #include "wtf/PassRefPtr.h"
47 #include "wtf/RefCounted.h" 47 #include "wtf/RefCounted.h"
48 #include "wtf/RefPtr.h" 48 #include "wtf/RefPtr.h"
49 #include "wtf/text/AtomicStringHash.h" 49 #include "wtf/text/AtomicStringHash.h"
50 50
51 namespace WebCore { 51 namespace WebCore {
52 52
53 class Dictionary; 53 class Dictionary;
54 class ExceptionState; 54 class ExceptionState;
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 NotificationState m_state; 162 NotificationState m_state;
163 163
164 NotificationClient* m_notificationClient; 164 NotificationClient* m_notificationClient;
165 165
166 OwnPtr<AsyncMethodRunner<Notification> > m_asyncRunner; 166 OwnPtr<AsyncMethodRunner<Notification> > m_asyncRunner;
167 }; 167 };
168 168
169 } // namespace WebCore 169 } // namespace WebCore
170 170
171 #endif // Notifications_h 171 #endif // Notifications_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698