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

Side by Side Diff: content/browser/web_contents/web_contents_view_win.h

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
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_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_WIN_H_ 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_WIN_H_
6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_WIN_H_ 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_WIN_H_
7 7
8 #include "base/memory/ref_counted.h" 8 #include "base/memory/ref_counted.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/timer/timer.h" 10 #include "base/timer/timer.h"
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 // Implementation of RenderViewHostDelegateView. 81 // Implementation of RenderViewHostDelegateView.
82 virtual void ShowContextMenu(const ContextMenuParams& params) OVERRIDE; 82 virtual void ShowContextMenu(const ContextMenuParams& params) OVERRIDE;
83 virtual void ShowPopupMenu(const gfx::Rect& bounds, 83 virtual void ShowPopupMenu(const gfx::Rect& bounds,
84 int item_height, 84 int item_height,
85 double item_font_size, 85 double item_font_size,
86 int selected_item, 86 int selected_item,
87 const std::vector<MenuItem>& items, 87 const std::vector<MenuItem>& items,
88 bool right_aligned, 88 bool right_aligned,
89 bool allow_multiple_selection) OVERRIDE; 89 bool allow_multiple_selection) OVERRIDE;
90 virtual void StartDragging(const DropData& drop_data, 90 virtual void StartDragging(const DropData& drop_data,
91 WebKit::WebDragOperationsMask operations, 91 blink::WebDragOperationsMask operations,
92 const gfx::ImageSkia& image, 92 const gfx::ImageSkia& image,
93 const gfx::Vector2d& image_offset, 93 const gfx::Vector2d& image_offset,
94 const DragEventSourceInfo& event_info) OVERRIDE; 94 const DragEventSourceInfo& event_info) OVERRIDE;
95 virtual void UpdateDragCursor(WebKit::WebDragOperation operation) OVERRIDE; 95 virtual void UpdateDragCursor(blink::WebDragOperation operation) OVERRIDE;
96 virtual void GotFocus() OVERRIDE; 96 virtual void GotFocus() OVERRIDE;
97 virtual void TakeFocus(bool reverse) OVERRIDE; 97 virtual void TakeFocus(bool reverse) OVERRIDE;
98 98
99 WebContentsImpl* web_contents() const { return web_contents_; } 99 WebContentsImpl* web_contents() const { return web_contents_; }
100 100
101 private: 101 private:
102 void EndDragging(); 102 void EndDragging();
103 void CloseTab(); 103 void CloseTab();
104 104
105 LRESULT OnCreate( 105 LRESULT OnCreate(
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 scoped_refptr<WebContentsDragWin> drag_handler_; 138 scoped_refptr<WebContentsDragWin> drag_handler_;
139 139
140 scoped_ptr<ui::HWNDMessageFilter> hwnd_message_filter_; 140 scoped_ptr<ui::HWNDMessageFilter> hwnd_message_filter_;
141 141
142 DISALLOW_COPY_AND_ASSIGN(WebContentsViewWin); 142 DISALLOW_COPY_AND_ASSIGN(WebContentsViewWin);
143 }; 143 };
144 144
145 } // namespace content 145 } // namespace content
146 146
147 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_WIN_H_ 147 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_WIN_H_
OLDNEW
« no previous file with comments | « content/browser/web_contents/web_contents_view_mac.mm ('k') | content/browser/web_contents/web_contents_view_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698