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

Side by Side Diff: third_party/WebKit/Source/core/frame/History.h

Issue 2553383002: Mechanical style fixes: History.cpp and Location.cpp (Closed)
Patch Set: . Created 4 years 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/frame/History.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007 Apple Inc. All rights reserved. 2 * Copyright (C) 2007 Apple 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 24 matching lines...) Expand all
35 #include "wtf/Forward.h" 35 #include "wtf/Forward.h"
36 36
37 namespace blink { 37 namespace blink {
38 38
39 class LocalFrame; 39 class LocalFrame;
40 class KURL; 40 class KURL;
41 class ExecutionContext; 41 class ExecutionContext;
42 class ExceptionState; 42 class ExceptionState;
43 class SecurityOrigin; 43 class SecurityOrigin;
44 44
45 // This class corresponds to the History interface.
45 class CORE_EXPORT History final : public GarbageCollectedFinalized<History>, 46 class CORE_EXPORT History final : public GarbageCollectedFinalized<History>,
46 public ScriptWrappable, 47 public ScriptWrappable,
47 public DOMWindowProperty { 48 public DOMWindowProperty {
48 DEFINE_WRAPPERTYPEINFO(); 49 DEFINE_WRAPPERTYPEINFO();
49 USING_GARBAGE_COLLECTED_MIXIN(History); 50 USING_GARBAGE_COLLECTED_MIXIN(History);
50 51
51 public: 52 public:
52 static History* create(LocalFrame* frame) { return new History(frame); } 53 static History* create(LocalFrame* frame) { return new History(frame); }
53 54
54 unsigned length() const; 55 unsigned length() const;
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 ExceptionState&); 104 ExceptionState&);
104 SerializedScriptValue* stateInternal() const; 105 SerializedScriptValue* stateInternal() const;
105 HistoryScrollRestorationType scrollRestorationInternal() const; 106 HistoryScrollRestorationType scrollRestorationInternal() const;
106 107
107 RefPtr<SerializedScriptValue> m_lastStateObjectRequested; 108 RefPtr<SerializedScriptValue> m_lastStateObjectRequested;
108 }; 109 };
109 110
110 } // namespace blink 111 } // namespace blink
111 112
112 #endif // History_h 113 #endif // History_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/frame/History.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698