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

Side by Side Diff: sky/engine/core/loader/EmptyClients.h

Issue 793393003: Move the call to mojo::View::Embed to HTMLIFrameElement (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 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
« no previous file with comments | « sky/engine/core/html/HTMLIFrameElement.cpp ('k') | sky/engine/core/loader/FrameLoaderClient.h » ('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) 2006 Eric Seidel (eric@webkit.org) 2 * Copyright (C) 2006 Eric Seidel (eric@webkit.org)
3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. 5 * Copyright (C) 2012 Samsung Electronics. All rights reserved.
6 * 6 *
7 * Redistribution and use in source and binary forms, with or without 7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions 8 * modification, are permitted provided that the following conditions
9 * are met: 9 * are met:
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 virtual void dispatchDidReceiveTitle(const String&) override { } 116 virtual void dispatchDidReceiveTitle(const String&) override { }
117 virtual void dispatchDidFailLoad(const ResourceError&) override { } 117 virtual void dispatchDidFailLoad(const ResourceError&) override { }
118 118
119 virtual NavigationPolicy decidePolicyForNavigation(const ResourceRequest&, D ocument*, NavigationPolicy, bool isTransitionNavigation) override; 119 virtual NavigationPolicy decidePolicyForNavigation(const ResourceRequest&, D ocument*, NavigationPolicy, bool isTransitionNavigation) override;
120 120
121 virtual void didStartLoading(LoadStartType) override { } 121 virtual void didStartLoading(LoadStartType) override { }
122 virtual void progressEstimateChanged(double) override { } 122 virtual void progressEstimateChanged(double) override { }
123 virtual void didStopLoading() override { } 123 virtual void didStopLoading() override { }
124 124
125 virtual void loadURLExternally(const ResourceRequest&, NavigationPolicy, con st String& = String()) override { } 125 virtual void loadURLExternally(const ResourceRequest&, NavigationPolicy, con st String& = String()) override { }
126 virtual mojo::View* createChildFrame(const KURL&) override { return nullptr; } 126 virtual mojo::View* createChildFrame() override { return nullptr; }
127 127
128 virtual void transitionToCommittedForNewPage() override { } 128 virtual void transitionToCommittedForNewPage() override { }
129 129
130 virtual void selectorMatchChanged(const Vector<String>&, const Vector<String >&) override { } 130 virtual void selectorMatchChanged(const Vector<String>&, const Vector<String >&) override { }
131 131
132 virtual void documentElementAvailable() override { } 132 virtual void documentElementAvailable() override { }
133 133
134 virtual void didCreateScriptContext(v8::Handle<v8::Context>) override { } 134 virtual void didCreateScriptContext(v8::Handle<v8::Context>) override { }
135 virtual void willReleaseScriptContext(v8::Handle<v8::Context>) override { } 135 virtual void willReleaseScriptContext(v8::Handle<v8::Context>) override { }
136 }; 136 };
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 virtual bool canPaste(LocalFrame*, bool defaultValue) const override { retur n defaultValue; } 179 virtual bool canPaste(LocalFrame*, bool defaultValue) const override { retur n defaultValue; }
180 180
181 virtual bool handleKeyboardEvent() override { return false; } 181 virtual bool handleKeyboardEvent() override { return false; }
182 }; 182 };
183 183
184 void fillWithEmptyClients(Page::PageClients&); 184 void fillWithEmptyClients(Page::PageClients&);
185 185
186 } 186 }
187 187
188 #endif // SKY_ENGINE_CORE_LOADER_EMPTYCLIENTS_H_ 188 #endif // SKY_ENGINE_CORE_LOADER_EMPTYCLIENTS_H_
OLDNEW
« no previous file with comments | « sky/engine/core/html/HTMLIFrameElement.cpp ('k') | sky/engine/core/loader/FrameLoaderClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698