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

Side by Side Diff: third_party/WebKit/Source/modules/navigatorcontentutils/testing/NavigatorContentUtilsClientMock.h

Issue 1441083002: Oilpan: move NavigatorContentUtilsClients to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add back non-Oilpan USING_FAST_MALLOC() usage for NavigatorContentUtilsClient Created 5 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NavigatorContentUtilsClientMock_h 5 #ifndef NavigatorContentUtilsClientMock_h
6 #define NavigatorContentUtilsClientMock_h 6 #define NavigatorContentUtilsClientMock_h
7 7
8 #include "modules/navigatorcontentutils/NavigatorContentUtilsClient.h" 8 #include "modules/navigatorcontentutils/NavigatorContentUtilsClient.h"
9 #include "platform/heap/Handle.h"
9 #include "wtf/HashSet.h" 10 #include "wtf/HashSet.h"
10 #include "wtf/text/WTFString.h" 11 #include "wtf/text/WTFString.h"
11 12
12 namespace blink { 13 namespace blink {
13 14
14 class KURL; 15 class KURL;
15 16
16 // Provides a mock object for the navigatorcontentutils client. 17 // Provides a mock object for the navigatorcontentutils client.
17 class NavigatorContentUtilsClientMock final : public NavigatorContentUtilsClient { 18 class NavigatorContentUtilsClientMock final : public NavigatorContentUtilsClient {
18 public: 19 public:
19 NavigatorContentUtilsClientMock() { } 20 static PassOwnPtrWillBeRawPtr<NavigatorContentUtilsClientMock> create()
21 {
22 return adoptPtrWillBeNoop(new NavigatorContentUtilsClientMock);
23 }
24
20 ~NavigatorContentUtilsClientMock() override { } 25 ~NavigatorContentUtilsClientMock() override { }
21 26
22 virtual void registerProtocolHandler(const String& scheme, const KURL&, cons t String& title); 27 virtual void registerProtocolHandler(const String& scheme, const KURL&, cons t String& title);
23 28
24 virtual CustomHandlersState isProtocolHandlerRegistered(const String& scheme , const KURL&); 29 virtual CustomHandlersState isProtocolHandlerRegistered(const String& scheme , const KURL&);
25 virtual void unregisterProtocolHandler(const String& scheme, const KURL&); 30 virtual void unregisterProtocolHandler(const String& scheme, const KURL&);
26 31
27 private: 32 private:
33 NavigatorContentUtilsClientMock() { }
34
28 typedef struct { 35 typedef struct {
29 String scheme; 36 String scheme;
30 KURL url; 37 KURL url;
31 String title; 38 String title;
32 } ProtocolInfo; 39 } ProtocolInfo;
33 40
34 typedef HashMap<String, ProtocolInfo> RegisteredProtocolMap; 41 typedef HashMap<String, ProtocolInfo> RegisteredProtocolMap;
35 RegisteredProtocolMap m_protocolMap; 42 RegisteredProtocolMap m_protocolMap;
36 }; 43 };
37 44
38 } // namespace blink 45 } // namespace blink
39 46
40 #endif // NavigatorContentUtilsClientMock_h 47 #endif // NavigatorContentUtilsClientMock_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698