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

Side by Side Diff: ash/shell.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: review fix 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 | « no previous file | ash/system/ime/tray_ime.cc » ('j') | ash/system/ime/tray_ime.cc » ('J')
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/shell.h" 5 #include "ash/shell.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "ash/app_list/app_list.h" 9 #include "ash/app_list/app_list.h"
10 #include "ash/ash_switches.h" 10 #include "ash/ash_switches.h"
(...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after
376 376
377 virtual void GetAvailableIMEList(IMEInfoList* list) OVERRIDE { 377 virtual void GetAvailableIMEList(IMEInfoList* list) OVERRIDE {
378 } 378 }
379 379
380 virtual void GetCurrentIMEProperties(IMEPropertyInfoList* list) OVERRIDE { 380 virtual void GetCurrentIMEProperties(IMEPropertyInfoList* list) OVERRIDE {
381 } 381 }
382 382
383 virtual void SwitchIME(const std::string& ime_id) OVERRIDE { 383 virtual void SwitchIME(const std::string& ime_id) OVERRIDE {
384 } 384 }
385 385
386 virtual void ActivateIMEProperty(const std::string& key, 386 virtual void ActivateIMEProperty(const std::string& key) OVERRIDE {
387 bool is_selection) OVERRIDE {
388 } 387 }
389 388
390 virtual void GetMostRelevantNetworkIcon(NetworkIconInfo* info, 389 virtual void GetMostRelevantNetworkIcon(NetworkIconInfo* info,
391 bool large) OVERRIDE { 390 bool large) OVERRIDE {
392 } 391 }
393 392
394 virtual void GetAvailableNetworks( 393 virtual void GetAvailableNetworks(
395 std::vector<NetworkIconInfo>* list) OVERRIDE { 394 std::vector<NetworkIconInfo>* list) OVERRIDE {
396 } 395 }
397 396
(...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after
936 // Create desktop background widget. 935 // Create desktop background widget.
937 desktop_background_controller_->SetDesktopBackgroundImageMode(); 936 desktop_background_controller_->SetDesktopBackgroundImageMode();
938 } 937 }
939 938
940 void Shell::DisableWorkspaceGridLayout() { 939 void Shell::DisableWorkspaceGridLayout() {
941 if (workspace_controller_.get()) 940 if (workspace_controller_.get())
942 workspace_controller_->workspace_manager()->set_grid_size(0); 941 workspace_controller_->workspace_manager()->set_grid_size(0);
943 } 942 }
944 943
945 } // namespace ash 944 } // namespace ash
OLDNEW
« no previous file with comments | « no previous file | ash/system/ime/tray_ime.cc » ('j') | ash/system/ime/tray_ime.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698