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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_win.h

Issue 21835006: Change imm32_manager_ using scoped_ptr for mock testing. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 4 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
« no previous file with comments | « no previous file | content/browser/renderer_host/render_widget_host_view_win.cc » ('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) 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 CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_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 457 matching lines...) Expand 10 before | Expand all | Expand 10 after
468 WebCursor current_cursor_; 468 WebCursor current_cursor_;
469 469
470 // Indicates if the page is loading. 470 // Indicates if the page is loading.
471 bool is_loading_; 471 bool is_loading_;
472 472
473 // true if we are currently tracking WM_MOUSEEXIT messages. 473 // true if we are currently tracking WM_MOUSEEXIT messages.
474 bool track_mouse_leave_; 474 bool track_mouse_leave_;
475 475
476 // Wrapper class for IMM32 APIs. 476 // Wrapper class for IMM32 APIs.
477 // (See "ui/base/ime/win/imm32_manager.h" for its details.) 477 // (See "ui/base/ime/win/imm32_manager.h" for its details.)
478 ui::IMM32Manager imm32_manager_; 478 scoped_ptr<ui::IMM32Manager> imm32_manager_;
479 479
480 // Represents whether or not this browser process is receiving status 480 // Represents whether or not this browser process is receiving status
481 // messages about the focused edit control from a renderer process. 481 // messages about the focused edit control from a renderer process.
482 bool ime_notification_; 482 bool ime_notification_;
483 483
484 // true if Enter was hit when render widget host was in focus. 484 // true if Enter was hit when render widget host was in focus.
485 bool capture_enter_key_; 485 bool capture_enter_key_;
486 486
487 // true if the View is not visible. 487 // true if the View is not visible.
488 bool is_hidden_; 488 bool is_hidden_;
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
599 base::win::ScopedComPtr<IAccessible> window_iaccessible_; 599 base::win::ScopedComPtr<IAccessible> window_iaccessible_;
600 600
601 ui::LatencyInfo software_latency_info_; 601 ui::LatencyInfo software_latency_info_;
602 602
603 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin); 603 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin);
604 }; 604 };
605 605
606 } // namespace content 606 } // namespace content
607 607
608 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ 608 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_
OLDNEW
« no previous file with comments | « no previous file | content/browser/renderer_host/render_widget_host_view_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698