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

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

Issue 11245004: [content shell] link against the TestRunner library (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: patch for landing Created 8 years, 1 month 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
« no previous file with comments | « content/public/renderer/render_view_observer.h ('k') | content/renderer/render_view_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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_VIEW_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
7 7
8 #include <set> 8 #include <set>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after
685 const ContextMenuParams& params) OVERRIDE; 685 const ContextMenuParams& params) OVERRIDE;
686 virtual void CancelContextMenu(int request_id) OVERRIDE; 686 virtual void CancelContextMenu(int request_id) OVERRIDE;
687 virtual WebKit::WebPageVisibilityState GetVisibilityState() const OVERRIDE; 687 virtual WebKit::WebPageVisibilityState GetVisibilityState() const OVERRIDE;
688 virtual void RunModalAlertDialog(WebKit::WebFrame* frame, 688 virtual void RunModalAlertDialog(WebKit::WebFrame* frame,
689 const WebKit::WebString& message) OVERRIDE; 689 const WebKit::WebString& message) OVERRIDE;
690 virtual void LoadURLExternally( 690 virtual void LoadURLExternally(
691 WebKit::WebFrame* frame, 691 WebKit::WebFrame* frame,
692 const WebKit::WebURLRequest& request, 692 const WebKit::WebURLRequest& request,
693 WebKit::WebNavigationPolicy policy) OVERRIDE; 693 WebKit::WebNavigationPolicy policy) OVERRIDE;
694 virtual void Repaint(const gfx::Size& size) OVERRIDE; 694 virtual void Repaint(const gfx::Size& size) OVERRIDE;
695 virtual void SetEditCommandForNextKeyEvent(const std::string& name,
696 const std::string& value) OVERRIDE;
697 virtual void ClearEditCommands() OVERRIDE;
695 698
696 // webkit_glue::WebPluginPageDelegate implementation ------------------------- 699 // webkit_glue::WebPluginPageDelegate implementation -------------------------
697 700
698 virtual webkit::npapi::WebPluginDelegate* CreatePluginDelegate( 701 virtual webkit::npapi::WebPluginDelegate* CreatePluginDelegate(
699 const FilePath& file_path, 702 const FilePath& file_path,
700 const std::string& mime_type) OVERRIDE; 703 const std::string& mime_type) OVERRIDE;
701 virtual WebKit::WebPlugin* CreatePluginReplacement( 704 virtual WebKit::WebPlugin* CreatePluginReplacement(
702 const FilePath& file_path) OVERRIDE; 705 const FilePath& file_path) OVERRIDE;
703 virtual void CreatedPluginWindow(gfx::PluginWindowHandle handle) OVERRIDE; 706 virtual void CreatedPluginWindow(gfx::PluginWindowHandle handle) OVERRIDE;
704 virtual void WillDestroyPluginWindow(gfx::PluginWindowHandle handle) OVERRIDE; 707 virtual void WillDestroyPluginWindow(gfx::PluginWindowHandle handle) OVERRIDE;
(...skipping 836 matching lines...) Expand 10 before | Expand all | Expand 10 after
1541 // use the Observer interface to filter IPC messages and receive frame change 1544 // use the Observer interface to filter IPC messages and receive frame change
1542 // notifications. 1545 // notifications.
1543 // --------------------------------------------------------------------------- 1546 // ---------------------------------------------------------------------------
1544 1547
1545 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1548 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1546 }; 1549 };
1547 1550
1548 } // namespace content 1551 } // namespace content
1549 1552
1550 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1553 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « content/public/renderer/render_view_observer.h ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698