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

Side by Side Diff: views/controls/textfield/native_textfield_win.cc

Issue 260003: Move the clipboard stuff out of base and into app/clipboard. I renamed... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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 | « views/controls/message_box_view.cc ('k') | webkit/glue/scoped_clipboard_writer_glue.h » ('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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 <algorithm> 5 #include <algorithm>
6 6
7 #include "app/clipboard/clipboard.h"
8 #include "app/clipboard/scoped_clipboard_writer.h"
7 #include "app/l10n_util.h" 9 #include "app/l10n_util.h"
8 #include "app/l10n_util_win.h" 10 #include "app/l10n_util_win.h"
9 #include "app/win_util.h" 11 #include "app/win_util.h"
10 #include "base/clipboard.h"
11 #include "base/gfx/native_theme.h" 12 #include "base/gfx/native_theme.h"
12 #include "base/keyboard_codes.h" 13 #include "base/keyboard_codes.h"
13 #include "base/scoped_clipboard_writer.h"
14 #include "base/string_util.h" 14 #include "base/string_util.h"
15 #include "base/win_util.h" 15 #include "base/win_util.h"
16 #include "grit/app_strings.h" 16 #include "grit/app_strings.h"
17 #include "skia/ext/skia_utils_win.h" 17 #include "skia/ext/skia_utils_win.h"
18 #include "views/controls/menu/menu_win.h" 18 #include "views/controls/menu/menu_win.h"
19 #include "views/controls/native/native_view_host.h" 19 #include "views/controls/native/native_view_host.h"
20 #include "views/controls/textfield/native_textfield_win.h" 20 #include "views/controls/textfield/native_textfield_win.h"
21 #include "views/controls/textfield/textfield.h" 21 #include "views/controls/textfield/textfield.h"
22 #include "views/focus/focus_manager.h" 22 #include "views/focus/focus_manager.h"
23 #include "views/focus/focus_util_win.h" 23 #include "views/focus/focus_util_win.h"
(...skipping 859 matching lines...) Expand 10 before | Expand all | Expand 10 after
883 //////////////////////////////////////////////////////////////////////////////// 883 ////////////////////////////////////////////////////////////////////////////////
884 // NativeTextfieldWrapper, public: 884 // NativeTextfieldWrapper, public:
885 885
886 // static 886 // static
887 NativeTextfieldWrapper* NativeTextfieldWrapper::CreateWrapper( 887 NativeTextfieldWrapper* NativeTextfieldWrapper::CreateWrapper(
888 Textfield* field) { 888 Textfield* field) {
889 return new NativeTextfieldWin(field); 889 return new NativeTextfieldWin(field);
890 } 890 }
891 891
892 } // namespace views 892 } // namespace views
OLDNEW
« no previous file with comments | « views/controls/message_box_view.cc ('k') | webkit/glue/scoped_clipboard_writer_glue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698