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

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

Issue 2949873005: Move ObjectContentType entirely to HTMLPlugInElement (Closed)
Patch Set: Created 3 years, 6 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 | « no previous file | third_party/WebKit/Source/core/html/HTMLEmbedElement.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) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
3 * reserved. 3 * reserved.
4 * Copyright (C) 2012 Google Inc. All rights reserved. 4 * Copyright (C) 2012 Google Inc. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
9 * 9 *
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 bool load_manually, 216 bool load_manually,
217 DetachedPluginPolicy) = 0; 217 DetachedPluginPolicy) = 0;
218 218
219 virtual std::unique_ptr<WebMediaPlayer> CreateWebMediaPlayer( 219 virtual std::unique_ptr<WebMediaPlayer> CreateWebMediaPlayer(
220 HTMLMediaElement&, 220 HTMLMediaElement&,
221 const WebMediaPlayerSource&, 221 const WebMediaPlayerSource&,
222 WebMediaPlayerClient*) = 0; 222 WebMediaPlayerClient*) = 0;
223 virtual WebRemotePlaybackClient* CreateWebRemotePlaybackClient( 223 virtual WebRemotePlaybackClient* CreateWebRemotePlaybackClient(
224 HTMLMediaElement&) = 0; 224 HTMLMediaElement&) = 0;
225 225
226 virtual ObjectContentType GetObjectContentType(
227 const KURL&,
228 const String& mime_type,
229 bool should_prefer_plug_ins_for_images) = 0;
230
231 virtual void DidCreateNewDocument() = 0; 226 virtual void DidCreateNewDocument() = 0;
232 virtual void DispatchDidClearWindowObjectInMainWorld() = 0; 227 virtual void DispatchDidClearWindowObjectInMainWorld() = 0;
233 virtual void DocumentElementAvailable() = 0; 228 virtual void DocumentElementAvailable() = 0;
234 virtual void RunScriptsAtDocumentElementAvailable() = 0; 229 virtual void RunScriptsAtDocumentElementAvailable() = 0;
235 virtual void RunScriptsAtDocumentReady(bool document_is_empty) = 0; 230 virtual void RunScriptsAtDocumentReady(bool document_is_empty) = 0;
236 virtual void RunScriptsAtDocumentIdle() = 0; 231 virtual void RunScriptsAtDocumentIdle() = 0;
237 232
238 virtual void DidCreateScriptContext(v8::Local<v8::Context>, int world_id) = 0; 233 virtual void DidCreateScriptContext(v8::Local<v8::Context>, int world_id) = 0;
239 virtual void WillReleaseScriptContext(v8::Local<v8::Context>, 234 virtual void WillReleaseScriptContext(v8::Local<v8::Context>,
240 int world_id) = 0; 235 int world_id) = 0;
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 virtual TextCheckerClient& GetTextCheckerClient() const = 0; 348 virtual TextCheckerClient& GetTextCheckerClient() const = 0;
354 349
355 virtual std::unique_ptr<WebURLLoader> CreateURLLoader() = 0; 350 virtual std::unique_ptr<WebURLLoader> CreateURLLoader() = 0;
356 351
357 virtual void AnnotatedRegionsChanged() = 0; 352 virtual void AnnotatedRegionsChanged() = 0;
358 }; 353 };
359 354
360 } // namespace blink 355 } // namespace blink
361 356
362 #endif // LocalFrameClient_h 357 #endif // LocalFrameClient_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/html/HTMLEmbedElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698