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

Side by Side Diff: Source/core/loader/PrerenderHandle.h

Issue 134443002: Update fetch / loader classes to use OVERRIDE / FINAL when needed (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: No OVERRIDE / FINAL in web Created 6 years, 11 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
« no previous file with comments | « Source/core/loader/PingLoader.h ('k') | Source/core/loader/TextTrackLoader.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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 25 matching lines...) Expand all
36 #include "wtf/Noncopyable.h" 36 #include "wtf/Noncopyable.h"
37 #include "wtf/PassOwnPtr.h" 37 #include "wtf/PassOwnPtr.h"
38 #include "wtf/PassRefPtr.h" 38 #include "wtf/PassRefPtr.h"
39 39
40 namespace WebCore { 40 namespace WebCore {
41 41
42 class Document; 42 class Document;
43 class Prerender; 43 class Prerender;
44 class PrerenderClient; 44 class PrerenderClient;
45 45
46 class PrerenderHandle : public DocumentLifecycleObserver { 46 class PrerenderHandle FINAL : public DocumentLifecycleObserver {
47 WTF_MAKE_NONCOPYABLE(PrerenderHandle); 47 WTF_MAKE_NONCOPYABLE(PrerenderHandle);
48 public: 48 public:
49 static PassOwnPtr<PrerenderHandle> create(Document&, PrerenderClient*, const KURL&); 49 static PassOwnPtr<PrerenderHandle> create(Document&, PrerenderClient*, const KURL&);
50 50
51 virtual ~PrerenderHandle(); 51 virtual ~PrerenderHandle();
52 52
53 void cancel(); 53 void cancel();
54 const KURL& url() const; 54 const KURL& url() const;
55 55
56 // From DocumentLifecycleObserver: 56 // From DocumentLifecycleObserver:
57 virtual void documentWasDetached() OVERRIDE; 57 virtual void documentWasDetached() OVERRIDE;
58 private: 58 private:
59 PrerenderHandle(Document&, PassRefPtr<Prerender>); 59 PrerenderHandle(Document&, PassRefPtr<Prerender>);
60 60
61 void detach(); 61 void detach();
62 62
63 RefPtr<Prerender> m_prerender; 63 RefPtr<Prerender> m_prerender;
64 }; 64 };
65 65
66 } 66 }
67 67
68 #endif // PrerenderHandle_h 68 #endif // PrerenderHandle_h
OLDNEW
« no previous file with comments | « Source/core/loader/PingLoader.h ('k') | Source/core/loader/TextTrackLoader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698