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

Side by Side Diff: chrome/browser/ui/views/tab_contents/tab_contents_view_win.cc

Issue 6204002: Carnitas: Remove chrome/browser/views, update references. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Yay, more syncing Created 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #include "chrome/browser/views/tab_contents/tab_contents_view_win.h" 5 #include "chrome/browser/ui/views/tab_contents/tab_contents_view_win.h"
6 6
7 #include <windows.h> 7 #include <windows.h>
8 8
9 #include "base/time.h" 9 #include "base/time.h"
10 #include "chrome/browser/download/download_request_limiter.h" 10 #include "chrome/browser/download/download_request_limiter.h"
11 #include "chrome/browser/renderer_host/render_process_host.h" 11 #include "chrome/browser/renderer_host/render_process_host.h"
12 #include "chrome/browser/renderer_host/render_view_host.h" 12 #include "chrome/browser/renderer_host/render_view_host.h"
13 #include "chrome/browser/renderer_host/render_view_host_factory.h" 13 #include "chrome/browser/renderer_host/render_view_host_factory.h"
14 #include "chrome/browser/renderer_host/render_widget_host_view_win.h" 14 #include "chrome/browser/renderer_host/render_widget_host_view_win.h"
15 #include "chrome/browser/tab_contents/interstitial_page.h" 15 #include "chrome/browser/tab_contents/interstitial_page.h"
16 #include "chrome/browser/tab_contents/tab_contents.h" 16 #include "chrome/browser/tab_contents/tab_contents.h"
17 #include "chrome/browser/tab_contents/tab_contents_delegate.h" 17 #include "chrome/browser/tab_contents/tab_contents_delegate.h"
18 #include "chrome/browser/tab_contents/web_drop_target_win.h" 18 #include "chrome/browser/tab_contents/web_drop_target_win.h"
19 #include "chrome/browser/ui/browser.h" // TODO(beng): this dependency is awful. 19 #include "chrome/browser/ui/browser.h" // TODO(beng): this dependency is awful.
20 #include "chrome/browser/views/sad_tab_view.h" 20 #include "chrome/browser/ui/views/sad_tab_view.h"
21 #include "chrome/browser/views/tab_contents/render_view_context_menu_views.h" 21 #include "chrome/browser/ui/views/tab_contents/render_view_context_menu_views.h"
22 #include "chrome/browser/views/tab_contents/tab_contents_drag_win.h" 22 #include "chrome/browser/ui/views/tab_contents/tab_contents_drag_win.h"
23 #include "gfx/canvas_skia_paint.h" 23 #include "gfx/canvas_skia_paint.h"
24 #include "views/focus/view_storage.h" 24 #include "views/focus/view_storage.h"
25 #include "views/screen.h" 25 #include "views/screen.h"
26 #include "views/widget/root_view.h" 26 #include "views/widget/root_view.h"
27 27
28 using WebKit::WebDragOperation; 28 using WebKit::WebDragOperation;
29 using WebKit::WebDragOperationNone; 29 using WebKit::WebDragOperationNone;
30 using WebKit::WebDragOperationsMask; 30 using WebKit::WebDragOperationsMask;
31 using WebKit::WebInputEvent; 31 using WebKit::WebInputEvent;
32 32
(...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after
567 } 567 }
568 return false; 568 return false;
569 } 569 }
570 570
571 void TabContentsViewWin::WheelZoom(int distance) { 571 void TabContentsViewWin::WheelZoom(int distance) {
572 if (tab_contents()->delegate()) { 572 if (tab_contents()->delegate()) {
573 bool zoom_in = distance > 0; 573 bool zoom_in = distance > 0;
574 tab_contents()->delegate()->ContentsZoomChange(zoom_in); 574 tab_contents()->delegate()->ContentsZoomChange(zoom_in);
575 } 575 }
576 } 576 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/tab_contents/tab_contents_view_views.cc ('k') | chrome/browser/ui/views/tab_icon_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698