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

Side by Side Diff: third_party/WebKit/Source/core/testing/InternalSettings.h

Issue 2818083002: Rewrite references to "wtf/" to "platform/wtf/" in the rest of core/. (Closed)
Patch Set: Rebase. Created 3 years, 8 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2013 Apple Inc. All rights reserved. 3 * Copyright (C) 2013 Apple Inc. All rights reserved.
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 15 matching lines...) Expand all
26 26
27 #ifndef InternalSettings_h 27 #ifndef InternalSettings_h
28 #define InternalSettings_h 28 #define InternalSettings_h
29 29
30 #include "core/editing/EditingBehaviorTypes.h" 30 #include "core/editing/EditingBehaviorTypes.h"
31 #include "core/page/Page.h" 31 #include "core/page/Page.h"
32 #include "core/testing/InternalSettingsGenerated.h" 32 #include "core/testing/InternalSettingsGenerated.h"
33 #include "platform/geometry/IntSize.h" 33 #include "platform/geometry/IntSize.h"
34 #include "platform/graphics/ImageAnimationPolicy.h" 34 #include "platform/graphics/ImageAnimationPolicy.h"
35 #include "platform/heap/Handle.h" 35 #include "platform/heap/Handle.h"
36 #include "platform/wtf/Allocator.h"
37 #include "platform/wtf/text/WTFString.h"
36 #include "public/platform/WebDisplayMode.h" 38 #include "public/platform/WebDisplayMode.h"
37 #include "wtf/Allocator.h"
38 #include "wtf/text/WTFString.h"
39 39
40 namespace blink { 40 namespace blink {
41 41
42 class ExceptionState; 42 class ExceptionState;
43 class Page; 43 class Page;
44 class Settings; 44 class Settings;
45 45
46 class InternalSettings final : public InternalSettingsGenerated, 46 class InternalSettings final : public InternalSettingsGenerated,
47 public Supplement<Page> { 47 public Supplement<Page> {
48 USING_GARBAGE_COLLECTED_MIXIN(InternalSettings); 48 USING_GARBAGE_COLLECTED_MIXIN(InternalSettings);
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 Settings* GetSettings() const; 152 Settings* GetSettings() const;
153 Page* GetPage() const { return GetSupplementable(); } 153 Page* GetPage() const { return GetSupplementable(); }
154 static const char* SupplementName(); 154 static const char* SupplementName();
155 155
156 Backup backup_; 156 Backup backup_;
157 }; 157 };
158 158
159 } // namespace blink 159 } // namespace blink
160 160
161 #endif // InternalSettings_h 161 #endif // InternalSettings_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698