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

Side by Side Diff: Source/core/html/shadow/TextControlInnerElements.h

Issue 1033943002: Rename LayoutStyle to papayawhip (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: ensureComputedStyle Created 5 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2008, 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2008, 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2010 Google Inc. All rights reserved. 3 * Copyright (C) 2010 Google 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 * 1. Redistributions of source code must retain the above copyright 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 20 matching lines...) Expand all
31 #include "wtf/Forward.h" 31 #include "wtf/Forward.h"
32 32
33 namespace blink { 33 namespace blink {
34 34
35 class TextControlInnerContainer final : public HTMLDivElement { 35 class TextControlInnerContainer final : public HTMLDivElement {
36 public: 36 public:
37 static PassRefPtrWillBeRawPtr<TextControlInnerContainer> create(Document&); 37 static PassRefPtrWillBeRawPtr<TextControlInnerContainer> create(Document&);
38 38
39 protected: 39 protected:
40 explicit TextControlInnerContainer(Document&); 40 explicit TextControlInnerContainer(Document&);
41 virtual LayoutObject* createLayoutObject(const LayoutStyle&) override; 41 virtual LayoutObject* createLayoutObject(const ComputedStyle&) override;
42 }; 42 };
43 43
44 class EditingViewPortElement final : public HTMLDivElement { 44 class EditingViewPortElement final : public HTMLDivElement {
45 public: 45 public:
46 static PassRefPtrWillBeRawPtr<EditingViewPortElement> create(Document&); 46 static PassRefPtrWillBeRawPtr<EditingViewPortElement> create(Document&);
47 47
48 protected: 48 protected:
49 explicit EditingViewPortElement(Document&); 49 explicit EditingViewPortElement(Document&);
50 virtual PassRefPtr<LayoutStyle> customStyleForLayoutObject() override; 50 virtual PassRefPtr<ComputedStyle> customStyleForLayoutObject() override;
51 51
52 private: 52 private:
53 virtual bool supportsFocus() const override { return false; } 53 virtual bool supportsFocus() const override { return false; }
54 }; 54 };
55 55
56 class TextControlInnerEditorElement final : public HTMLDivElement { 56 class TextControlInnerEditorElement final : public HTMLDivElement {
57 public: 57 public:
58 static PassRefPtrWillBeRawPtr<TextControlInnerEditorElement> create(Document &); 58 static PassRefPtrWillBeRawPtr<TextControlInnerEditorElement> create(Document &);
59 59
60 virtual void defaultEventHandler(Event*) override; 60 virtual void defaultEventHandler(Event*) override;
61 61
62 private: 62 private:
63 explicit TextControlInnerEditorElement(Document&); 63 explicit TextControlInnerEditorElement(Document&);
64 virtual LayoutObject* createLayoutObject(const LayoutStyle&) override; 64 virtual LayoutObject* createLayoutObject(const ComputedStyle&) override;
65 virtual PassRefPtr<LayoutStyle> customStyleForLayoutObject() override; 65 virtual PassRefPtr<ComputedStyle> customStyleForLayoutObject() override;
66 virtual bool supportsFocus() const override { return false; } 66 virtual bool supportsFocus() const override { return false; }
67 }; 67 };
68 68
69 class SearchFieldDecorationElement final : public HTMLDivElement { 69 class SearchFieldDecorationElement final : public HTMLDivElement {
70 public: 70 public:
71 static PassRefPtrWillBeRawPtr<SearchFieldDecorationElement> create(Document& ); 71 static PassRefPtrWillBeRawPtr<SearchFieldDecorationElement> create(Document& );
72 72
73 virtual void defaultEventHandler(Event*) override; 73 virtual void defaultEventHandler(Event*) override;
74 virtual bool willRespondToMouseClickEvents() override; 74 virtual bool willRespondToMouseClickEvents() override;
75 75
(...skipping 14 matching lines...) Expand all
90 explicit SearchFieldCancelButtonElement(Document&); 90 explicit SearchFieldCancelButtonElement(Document&);
91 virtual void detach(const AttachContext& = AttachContext()) override; 91 virtual void detach(const AttachContext& = AttachContext()) override;
92 virtual bool supportsFocus() const override { return false; } 92 virtual bool supportsFocus() const override { return false; }
93 93
94 bool m_capturing; 94 bool m_capturing;
95 }; 95 };
96 96
97 } // namespace 97 } // namespace
98 98
99 #endif 99 #endif
OLDNEW
« no previous file with comments | « Source/core/html/shadow/SliderThumbElement.cpp ('k') | Source/core/html/shadow/TextControlInnerElements.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698