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

Side by Side Diff: Source/core/html/PublicURLManager.h

Issue 1219013005: Fix virtual/override/final usage in Source/core/html/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 months 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
« no previous file with comments | « Source/core/html/PluginDocument.cpp ('k') | Source/core/html/RadioNodeList.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Motorola Mobility Inc. 2 * Copyright (C) 2012 Motorola Mobility Inc.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(PublicURLManager); 45 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(PublicURLManager);
46 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(PublicURLManager); 46 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(PublicURLManager);
47 public: 47 public:
48 static PassOwnPtrWillBeRawPtr<PublicURLManager> create(ExecutionContext*); 48 static PassOwnPtrWillBeRawPtr<PublicURLManager> create(ExecutionContext*);
49 49
50 void registerURL(SecurityOrigin*, const KURL&, URLRegistrable*, const String & uuid = String()); 50 void registerURL(SecurityOrigin*, const KURL&, URLRegistrable*, const String & uuid = String());
51 void revoke(const KURL&); 51 void revoke(const KURL&);
52 void revoke(const String& uuid); 52 void revoke(const String& uuid);
53 53
54 // ActiveDOMObject interface. 54 // ActiveDOMObject interface.
55 virtual void stop() override; 55 void stop() override;
56 56
57 DECLARE_VIRTUAL_TRACE(); 57 DECLARE_VIRTUAL_TRACE();
58 58
59 private: 59 private:
60 explicit PublicURLManager(ExecutionContext*); 60 explicit PublicURLManager(ExecutionContext*);
61 61
62 // One or more URLs can be associated with the same unique ID. 62 // One or more URLs can be associated with the same unique ID.
63 // Objects need be revoked by unique ID in some cases. 63 // Objects need be revoked by unique ID in some cases.
64 typedef String URLString; 64 typedef String URLString;
65 typedef HashMap<URLString, String> URLMap; 65 typedef HashMap<URLString, String> URLMap;
66 typedef HashMap<URLRegistry*, URLMap> RegistryURLMap; 66 typedef HashMap<URLRegistry*, URLMap> RegistryURLMap;
67 67
68 RegistryURLMap m_registryToURL; 68 RegistryURLMap m_registryToURL;
69 bool m_isStopped; 69 bool m_isStopped;
70 }; 70 };
71 71
72 } // namespace blink 72 } // namespace blink
73 73
74 #endif // PublicURLManager_h 74 #endif // PublicURLManager_h
OLDNEW
« no previous file with comments | « Source/core/html/PluginDocument.cpp ('k') | Source/core/html/RadioNodeList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698