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

Side by Side Diff: sky/engine/core/html/imports/HTMLImportChild.h

Issue 723253004: Remove tons of OILPAN. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 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 /* 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 #endif 67 #endif
68 68
69 Module* module() const; 69 Module* module() const;
70 70
71 // HTMLImport 71 // HTMLImport
72 virtual Document* document() const override; 72 virtual Document* document() const override;
73 virtual bool isDone() const override; 73 virtual bool isDone() const override;
74 virtual HTMLImportLoader* loader() const override; 74 virtual HTMLImportLoader* loader() const override;
75 virtual void stateWillChange() override; 75 virtual void stateWillChange() override;
76 virtual void stateDidChange() override; 76 virtual void stateDidChange() override;
77 virtual void trace(Visitor*) override;
78 77
79 #if !defined(NDEBUG) 78 #if !defined(NDEBUG)
80 virtual void showThis() override; 79 virtual void showThis() override;
81 #endif 80 #endif
82 81
83 void setClient(HTMLImportChildClient*); 82 void setClient(HTMLImportChildClient*);
84 #if !ENABLE(OILPAN) 83 #if !ENABLE(OILPAN)
85 void clearClient(); 84 void clearClient();
86 #endif 85 #endif
87 86
(...skipping 18 matching lines...) Expand all
106 105
107 inline HTMLImportChild* toHTMLImportChild(HTMLImport* import) 106 inline HTMLImportChild* toHTMLImportChild(HTMLImport* import)
108 { 107 {
109 ASSERT(!import || !import->isRoot()); 108 ASSERT(!import || !import->isRoot());
110 return static_cast<HTMLImportChild*>(import); 109 return static_cast<HTMLImportChild*>(import);
111 } 110 }
112 111
113 } // namespace blink 112 } // namespace blink
114 113
115 #endif // HTMLImportChild_h 114 #endif // HTMLImportChild_h
OLDNEW
« no previous file with comments | « sky/engine/core/html/imports/HTMLImport.h ('k') | sky/engine/core/html/imports/HTMLImportChild.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698