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

Side by Side Diff: ash/system/tray/system_tray.cc

Issue 9999018: chrome/browser/chromeos/input_method/ refactoring [part 6 of 6] (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 8 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 | « ash/system/ime/tray_ime.cc ('k') | ash/system/tray/system_tray_delegate.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) 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 #include "ash/system/tray/system_tray.h" 5 #include "ash/system/tray/system_tray.h"
6 6
7 #include "ash/shell.h" 7 #include "ash/shell.h"
8 #include "ash/shell/panel_window.h" 8 #include "ash/shell/panel_window.h"
9 #include "ash/shell_window_ids.h" 9 #include "ash/shell_window_ids.h"
10 #include "ash/system/tray/tray_constants.h" 10 #include "ash/system/tray/tray_constants.h"
(...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after
429 } 429 }
430 430
431 IMEInfo::IMEInfo() 431 IMEInfo::IMEInfo()
432 : selected(false) { 432 : selected(false) {
433 } 433 }
434 434
435 IMEInfo::~IMEInfo() { 435 IMEInfo::~IMEInfo() {
436 } 436 }
437 437
438 IMEPropertyInfo::IMEPropertyInfo() 438 IMEPropertyInfo::IMEPropertyInfo()
439 : selected(false), 439 : selected(false) {
440 is_selection(false) {
441 } 440 }
442 441
443 IMEPropertyInfo::~IMEPropertyInfo() { 442 IMEPropertyInfo::~IMEPropertyInfo() {
444 } 443 }
445 444
446 SystemTray::SystemTray() 445 SystemTray::SystemTray()
447 : items_(), 446 : items_(),
448 accessibility_observer_(NULL), 447 accessibility_observer_(NULL),
449 audio_observer_(NULL), 448 audio_observer_(NULL),
450 bluetooth_observer_(NULL), 449 bluetooth_observer_(NULL),
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
681 popup_->Hide(); 680 popup_->Hide();
682 } 681 }
683 } 682 }
684 return base::EVENT_CONTINUE; 683 return base::EVENT_CONTINUE;
685 } 684 }
686 685
687 void SystemTray::DidProcessEvent(const base::NativeEvent& event) { 686 void SystemTray::DidProcessEvent(const base::NativeEvent& event) {
688 } 687 }
689 688
690 } // namespace ash 689 } // namespace ash
OLDNEW
« no previous file with comments | « ash/system/ime/tray_ime.cc ('k') | ash/system/tray/system_tray_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698