OLD | NEW |
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 Loading... |
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 blink { | 40 namespace blink { |
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 FINAL : 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&, unsigned prerenderRelTypes); | 49 static PassOwnPtr<PrerenderHandle> create(Document&, PrerenderClient*, const
KURL&, unsigned prerenderRelTypes); |
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 |
OLD | NEW |