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

Side by Side Diff: content/shell/browser/shell_platform_data_aura.cc

Issue 1544273002: Switch to standard integer types in content/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "content/shell/browser/shell_platform_data_aura.h" 5 #include "content/shell/browser/shell_platform_data_aura.h"
6 6
7 #include "base/macros.h"
7 #include "content/shell/browser/shell.h" 8 #include "content/shell/browser/shell.h"
8 #include "ui/aura/client/default_capture_client.h" 9 #include "ui/aura/client/default_capture_client.h"
9 #include "ui/aura/env.h" 10 #include "ui/aura/env.h"
10 #include "ui/aura/layout_manager.h" 11 #include "ui/aura/layout_manager.h"
11 #include "ui/aura/test/test_focus_client.h" 12 #include "ui/aura/test/test_focus_client.h"
12 #include "ui/aura/test/test_window_tree_client.h" 13 #include "ui/aura/test/test_window_tree_client.h"
13 #include "ui/aura/window.h" 14 #include "ui/aura/window.h"
14 #include "ui/aura/window_event_dispatcher.h" 15 #include "ui/aura/window_event_dispatcher.h"
15 #include "ui/base/ime/input_method.h" 16 #include "ui/base/ime/input_method.h"
16 #include "ui/base/ime/input_method_delegate.h" 17 #include "ui/base/ime/input_method_delegate.h"
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 81
81 void ShellPlatformDataAura::ShowWindow() { 82 void ShellPlatformDataAura::ShowWindow() {
82 host_->Show(); 83 host_->Show();
83 } 84 }
84 85
85 void ShellPlatformDataAura::ResizeWindow(const gfx::Size& size) { 86 void ShellPlatformDataAura::ResizeWindow(const gfx::Size& size) {
86 host_->SetBounds(gfx::Rect(size)); 87 host_->SetBounds(gfx::Rect(size));
87 } 88 }
88 89
89 } // namespace content 90 } // namespace content
OLDNEW
« no previous file with comments | « content/shell/browser/shell_platform_data_aura.h ('k') | content/shell/browser/shell_plugin_service_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698