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

Side by Side Diff: content/renderer/render_frame_impl.h

Issue 1200503002: [Extensions] Kill off ExtensionMsg_AddMessageToConsole (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Latest master Created 5 years, 5 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 | « content/public/renderer/render_frame.h ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 } 331 }
332 #endif 332 #endif
333 bool IsFTPDirectoryListing() override; 333 bool IsFTPDirectoryListing() override;
334 void AttachGuest(int element_instance_id) override; 334 void AttachGuest(int element_instance_id) override;
335 void DetachGuest(int element_instance_id) override; 335 void DetachGuest(int element_instance_id) override;
336 void SetSelectedText(const base::string16& selection_text, 336 void SetSelectedText(const base::string16& selection_text,
337 size_t offset, 337 size_t offset,
338 const gfx::Range& range) override; 338 const gfx::Range& range) override;
339 void EnsureMojoBuiltinsAreAvailable(v8::Isolate* isolate, 339 void EnsureMojoBuiltinsAreAvailable(v8::Isolate* isolate,
340 v8::Local<v8::Context> context) override; 340 v8::Local<v8::Context> context) override;
341 void AddMessageToConsole(ConsoleMessageLevel level,
342 const std::string& message) override;
341 343
342 // blink::WebFrameClient implementation: 344 // blink::WebFrameClient implementation:
343 blink::WebPluginPlaceholder* createPluginPlaceholder( 345 blink::WebPluginPlaceholder* createPluginPlaceholder(
344 blink::WebLocalFrame*, 346 blink::WebLocalFrame*,
345 const blink::WebPluginParams&) override; 347 const blink::WebPluginParams&) override;
346 virtual blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame, 348 virtual blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame,
347 const blink::WebPluginParams& params); 349 const blink::WebPluginParams& params);
348 virtual blink::WebMediaPlayer* createMediaPlayer( 350 virtual blink::WebMediaPlayer* createMediaPlayer(
349 blink::WebLocalFrame* frame, 351 blink::WebLocalFrame* frame,
350 const blink::WebURL& url, 352 const blink::WebURL& url,
(...skipping 644 matching lines...) Expand 10 before | Expand all | Expand 10 after
995 #endif 997 #endif
996 998
997 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 999 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
998 1000
999 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1001 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1000 }; 1002 };
1001 1003
1002 } // namespace content 1004 } // namespace content
1003 1005
1004 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1006 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « content/public/renderer/render_frame.h ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698