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

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

Issue 6296012: Update references part 2: files in chrome/browser/ui/... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' 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
« no previous file with comments | « chrome/browser/ui/views/default_search_view.h ('k') | no next file » | 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) 2011 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/ui/views/tab_contents/tab_contents_view_gtk.h" 5 #include "chrome/browser/ui/views/tab_contents/tab_contents_view_gtk.h"
6 6
7 #include <gdk/gdk.h> 7 #include <gdk/gdk.h>
8 #include <gtk/gtk.h> 8 #include <gtk/gtk.h>
9 9
10 #include "base/string_util.h" 10 #include "base/string_util.h"
11 #include "base/utf_string_conversions.h" 11 #include "base/utf_string_conversions.h"
12 #include "build/build_config.h" 12 #include "build/build_config.h"
13 #include "chrome/browser/download/download_shelf.h" 13 #include "chrome/browser/download/download_shelf.h"
14 #include "chrome/browser/gtk/constrained_window_gtk.h"
15 #include "chrome/browser/gtk/tab_contents_drag_source.h"
16 #include "chrome/browser/renderer_host/render_view_host.h" 14 #include "chrome/browser/renderer_host/render_view_host.h"
17 #include "chrome/browser/renderer_host/render_view_host_factory.h" 15 #include "chrome/browser/renderer_host/render_view_host_factory.h"
18 #include "chrome/browser/renderer_host/render_widget_host_view_gtk.h" 16 #include "chrome/browser/renderer_host/render_widget_host_view_gtk.h"
19 #include "chrome/browser/tab_contents/interstitial_page.h" 17 #include "chrome/browser/tab_contents/interstitial_page.h"
20 #include "chrome/browser/tab_contents/tab_contents.h" 18 #include "chrome/browser/tab_contents/tab_contents.h"
21 #include "chrome/browser/tab_contents/tab_contents_delegate.h" 19 #include "chrome/browser/tab_contents/tab_contents_delegate.h"
22 #include "chrome/browser/tab_contents/web_drag_dest_gtk.h" 20 #include "chrome/browser/tab_contents/web_drag_dest_gtk.h"
21 #include "chrome/browser/ui/gtk/constrained_window_gtk.h"
22 #include "chrome/browser/ui/gtk/tab_contents_drag_source.h"
23 #include "chrome/browser/ui/views/sad_tab_view.h" 23 #include "chrome/browser/ui/views/sad_tab_view.h"
24 #include "chrome/browser/ui/views/tab_contents/render_view_context_menu_views.h" 24 #include "chrome/browser/ui/views/tab_contents/render_view_context_menu_views.h"
25 #include "gfx/canvas_skia_paint.h" 25 #include "gfx/canvas_skia_paint.h"
26 #include "gfx/point.h" 26 #include "gfx/point.h"
27 #include "gfx/rect.h" 27 #include "gfx/rect.h"
28 #include "gfx/size.h" 28 #include "gfx/size.h"
29 #include "views/controls/native/native_view_host.h" 29 #include "views/controls/native/native_view_host.h"
30 #include "views/focus/view_storage.h" 30 #include "views/focus/view_storage.h"
31 #include "views/screen.h" 31 #include "views/screen.h"
32 #include "views/widget/root_view.h" 32 #include "views/widget/root_view.h"
(...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after
474 // not NULL, else our delegate. 474 // not NULL, else our delegate.
475 gboolean TabContentsViewGtk::OnMouseMove(GtkWidget* widget, 475 gboolean TabContentsViewGtk::OnMouseMove(GtkWidget* widget,
476 GdkEventMotion* event) { 476 GdkEventMotion* event) {
477 if (sad_tab_ != NULL) 477 if (sad_tab_ != NULL)
478 WidgetGtk::OnMotionNotify(widget, event); 478 WidgetGtk::OnMotionNotify(widget, event);
479 else if (tab_contents()->delegate()) 479 else if (tab_contents()->delegate())
480 tab_contents()->delegate()->ContentsMouseEvent( 480 tab_contents()->delegate()->ContentsMouseEvent(
481 tab_contents(), views::Screen::GetCursorScreenPoint(), true); 481 tab_contents(), views::Screen::GetCursorScreenPoint(), true);
482 return FALSE; 482 return FALSE;
483 } 483 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/default_search_view.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698