| Index: third_party/WebKit/Source/core/CoreInitializer.h
|
| diff --git a/third_party/WebKit/Source/core/Init.h b/third_party/WebKit/Source/core/CoreInitializer.h
|
| similarity index 95%
|
| rename from third_party/WebKit/Source/core/Init.h
|
| rename to third_party/WebKit/Source/core/CoreInitializer.h
|
| index fd33dafc75402e8cf1c6a8d02e8cafd5a92922cb..43ac3aea26596fa9fbc0621bbc0a6b9b003ef48c 100644
|
| --- a/third_party/WebKit/Source/core/Init.h
|
| +++ b/third_party/WebKit/Source/core/CoreInitializer.h
|
| @@ -28,8 +28,8 @@
|
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| */
|
|
|
| -#ifndef Init_h
|
| -#define Init_h
|
| +#ifndef CoreInitializer_h
|
| +#define CoreInitializer_h
|
|
|
| #include "core/CoreExport.h"
|
| #include "wtf/Allocator.h"
|
| @@ -44,7 +44,7 @@ public:
|
| virtual ~CoreInitializer() { }
|
|
|
| // Should be called by clients before trying to create Frames.
|
| - virtual void init();
|
| + virtual void initialize();
|
| virtual void shutdown();
|
|
|
| protected:
|
| @@ -58,4 +58,4 @@ private:
|
|
|
| } // namespace blink
|
|
|
| -#endif // Init_h
|
| +#endif // CoreInitializer_h
|
|
|