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

Side by Side Diff: chrome/browser/autocomplete/autocomplete_edit_view_win.cc

Issue 1132006: Move app/gfx/canvas and app/gfx/font to gfx/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 9 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) 2010 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/autocomplete/autocomplete_edit_view_win.h" 5 #include "chrome/browser/autocomplete/autocomplete_edit_view_win.h"
6 6
7 #include <locale> 7 #include <locale>
8 #include <richedit.h> 8 #include <richedit.h>
9 #include <textserv.h> 9 #include <textserv.h>
10 10
11 #include "app/clipboard/clipboard.h" 11 #include "app/clipboard/clipboard.h"
12 #include "app/clipboard/scoped_clipboard_writer.h" 12 #include "app/clipboard/scoped_clipboard_writer.h"
13 #include "app/gfx/canvas.h"
14 #include "app/l10n_util.h" 13 #include "app/l10n_util.h"
15 #include "app/l10n_util_win.h" 14 #include "app/l10n_util_win.h"
16 #include "app/os_exchange_data.h" 15 #include "app/os_exchange_data.h"
17 #include "app/os_exchange_data_provider_win.h" 16 #include "app/os_exchange_data_provider_win.h"
18 #include "app/win_util.h" 17 #include "app/win_util.h"
19 #include "base/auto_reset.h" 18 #include "base/auto_reset.h"
20 #include "base/base_drag_source.h" 19 #include "base/base_drag_source.h"
21 #include "base/base_drop_target.h" 20 #include "base/base_drop_target.h"
22 #include "base/basictypes.h" 21 #include "base/basictypes.h"
23 #include "base/i18n/rtl.h" 22 #include "base/i18n/rtl.h"
(...skipping 12 matching lines...) Expand all
36 #include "chrome/browser/metrics/user_metrics.h" 35 #include "chrome/browser/metrics/user_metrics.h"
37 #include "chrome/browser/net/url_fixer_upper.h" 36 #include "chrome/browser/net/url_fixer_upper.h"
38 #include "chrome/browser/profile.h" 37 #include "chrome/browser/profile.h"
39 #include "chrome/browser/search_engines/template_url.h" 38 #include "chrome/browser/search_engines/template_url.h"
40 #include "chrome/browser/search_engines/template_url_model.h" 39 #include "chrome/browser/search_engines/template_url_model.h"
41 #include "chrome/browser/tab_contents/tab_contents.h" 40 #include "chrome/browser/tab_contents/tab_contents.h"
42 #include "chrome/browser/views/location_bar_view.h" 41 #include "chrome/browser/views/location_bar_view.h"
43 #include "chrome/common/gfx/utils.h" 42 #include "chrome/common/gfx/utils.h"
44 #include "chrome/common/notification_service.h" 43 #include "chrome/common/notification_service.h"
45 #include "googleurl/src/url_util.h" 44 #include "googleurl/src/url_util.h"
45 #include "gfx/canvas.h"
46 #include "grit/generated_resources.h" 46 #include "grit/generated_resources.h"
47 #include "net/base/escape.h" 47 #include "net/base/escape.h"
48 #include "skia/ext/skia_utils_win.h" 48 #include "skia/ext/skia_utils_win.h"
49 #include "views/drag_utils.h" 49 #include "views/drag_utils.h"
50 #include "views/focus/focus_util_win.h" 50 #include "views/focus/focus_util_win.h"
51 #include "views/widget/widget.h" 51 #include "views/widget/widget.h"
52 52
53 #pragma comment(lib, "oleacc.lib") // Needed for accessibility support. 53 #pragma comment(lib, "oleacc.lib") // Needed for accessibility support.
54 #pragma comment(lib, "riched20.lib") // Needed for the richedit control. 54 #pragma comment(lib, "riched20.lib") // Needed for the richedit control.
55 55
(...skipping 2374 matching lines...) Expand 10 before | Expand all | Expand 10 after
2430 context_menu_contents_->AddItemWithStringId(IDS_PASTE_AND_GO, 2430 context_menu_contents_->AddItemWithStringId(IDS_PASTE_AND_GO,
2431 IDS_PASTE_AND_GO); 2431 IDS_PASTE_AND_GO);
2432 context_menu_contents_->AddSeparator(); 2432 context_menu_contents_->AddSeparator();
2433 context_menu_contents_->AddItemWithStringId(IDS_SELECT_ALL, IDS_SELECT_ALL); 2433 context_menu_contents_->AddItemWithStringId(IDS_SELECT_ALL, IDS_SELECT_ALL);
2434 context_menu_contents_->AddSeparator(); 2434 context_menu_contents_->AddSeparator();
2435 context_menu_contents_->AddItemWithStringId(IDS_EDIT_SEARCH_ENGINES, 2435 context_menu_contents_->AddItemWithStringId(IDS_EDIT_SEARCH_ENGINES,
2436 IDS_EDIT_SEARCH_ENGINES); 2436 IDS_EDIT_SEARCH_ENGINES);
2437 } 2437 }
2438 context_menu_.reset(new views::Menu2(context_menu_contents_.get())); 2438 context_menu_.reset(new views::Menu2(context_menu_contents_.get()));
2439 } 2439 }
OLDNEW
« no previous file with comments | « chrome/browser/autocomplete/autocomplete_edit_view_win.h ('k') | chrome/browser/autocomplete/autocomplete_popup_view_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698