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

Side by Side Diff: chrome/browser/ui/views/omnibox/omnibox_view_win.h

Issue 11093044: Fix omnibox suggestion: restore selection on WM_IME_ENDCOMPOSITION (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 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
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 CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEW_WIN_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEW_WIN_H_
6 #define CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEW_WIN_H_ 6 #define CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEW_WIN_H_
7 7
8 #include <atlbase.h> 8 #include <atlbase.h>
9 #include <atlapp.h> 9 #include <atlapp.h>
10 #include <atlcrack.h> 10 #include <atlcrack.h>
(...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after
504 // This contains the scheme char start and stop indexes that should be 504 // This contains the scheme char start and stop indexes that should be
505 // stricken-out when displaying an insecure scheme. 505 // stricken-out when displaying an insecure scheme.
506 url_parse::Component insecure_scheme_component_; 506 url_parse::Component insecure_scheme_component_;
507 507
508 // Instance of accessibility information and handling. 508 // Instance of accessibility information and handling.
509 mutable base::win::ScopedComPtr<IAccessible> autocomplete_accessibility_; 509 mutable base::win::ScopedComPtr<IAccessible> autocomplete_accessibility_;
510 510
511 // The native view host. 511 // The native view host.
512 views::NativeViewHost* native_view_host_; 512 views::NativeViewHost* native_view_host_;
513 513
514 // True if in the OnImeComposition function. This value is used for
515 // workaround for preventing inline auto completion for Chinese and Japanese
falken 2012/10/10 09:51:33 nits: "used in a workaround" and "autocompletion"
Seigo Nonaka 2012/10/10 10:18:22 Done.
516 // keyboard layout.
517 bool in_on_ime_composition_;
518
514 DISALLOW_COPY_AND_ASSIGN(OmniboxViewWin); 519 DISALLOW_COPY_AND_ASSIGN(OmniboxViewWin);
515 }; 520 };
516 521
517 #endif // CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEW_WIN_H_ 522 #endif // CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEW_WIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698