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

Side by Side Diff: Source/core/dom/DOMURLUtils.h

Issue 1219063013: Fix virtual/override/final usage in Source/core/dom/. (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/dom/DOMURL.h ('k') | Source/core/dom/DatasetDOMStringMap.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) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * Copyright (C) 2012 Motorola Mobility Inc. 3 * Copyright (C) 2012 Motorola Mobility Inc.
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 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. 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 21 matching lines...) Expand all
32 #include "wtf/Forward.h" 32 #include "wtf/Forward.h"
33 33
34 namespace blink { 34 namespace blink {
35 35
36 class KURL; 36 class KURL;
37 37
38 class CORE_EXPORT DOMURLUtils : public DOMURLUtilsReadOnly { 38 class CORE_EXPORT DOMURLUtils : public DOMURLUtilsReadOnly {
39 public: 39 public:
40 virtual void setURL(const KURL&) = 0; 40 virtual void setURL(const KURL&) = 0;
41 virtual void setInput(const String&) = 0; 41 virtual void setInput(const String&) = 0;
42 virtual ~DOMURLUtils() { }; 42 ~DOMURLUtils() override { };
43 43
44 void setHref(const String&); 44 void setHref(const String&);
45 45
46 void setProtocol(const String&); 46 void setProtocol(const String&);
47 void setUsername(const String&); 47 void setUsername(const String&);
48 void setPassword(const String&); 48 void setPassword(const String&);
49 void setHost(const String&); 49 void setHost(const String&);
50 void setHostname(const String&); 50 void setHostname(const String&);
51 void setPort(const String&); 51 void setPort(const String&);
52 void setPathname(const String&); 52 void setPathname(const String&);
53 void setSearch(const String&); 53 void setSearch(const String&);
54 void setHash(const String&); 54 void setHash(const String&);
55 }; 55 };
56 56
57 } // namespace blink 57 } // namespace blink
58 58
59 #endif // DOMURLUtils_h 59 #endif // DOMURLUtils_h
OLDNEW
« no previous file with comments | « Source/core/dom/DOMURL.h ('k') | Source/core/dom/DatasetDOMStringMap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698