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

Side by Side Diff: extensions/browser/app_window/app_window.cc

Issue 1549643002: Switch to standard integer types in extensions/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clean
Patch Set: Created 5 years 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 "extensions/browser/app_window/app_window.h" 5 #include "extensions/browser/app_window/app_window.h"
6 6
7 #include <stddef.h>
8
7 #include <algorithm> 9 #include <algorithm>
8 #include <string> 10 #include <string>
9 #include <utility> 11 #include <utility>
10 #include <vector> 12 #include <vector>
11 13
12 #include "base/callback_helpers.h" 14 #include "base/callback_helpers.h"
13 #include "base/command_line.h" 15 #include "base/command_line.h"
14 #include "base/strings/string_util.h" 16 #include "base/strings/string_util.h"
15 #include "base/strings/utf_string_conversions.h" 17 #include "base/strings/utf_string_conversions.h"
16 #include "base/task_runner.h" 18 #include "base/task_runner.h"
17 #include "base/thread_task_runner_handle.h" 19 #include "base/thread_task_runner_handle.h"
18 #include "base/values.h" 20 #include "base/values.h"
21 #include "build/build_config.h"
19 #include "components/web_modal/web_contents_modal_dialog_manager.h" 22 #include "components/web_modal/web_contents_modal_dialog_manager.h"
20 #include "content/public/browser/browser_context.h" 23 #include "content/public/browser/browser_context.h"
21 #include "content/public/browser/invalidate_type.h" 24 #include "content/public/browser/invalidate_type.h"
22 #include "content/public/browser/navigation_entry.h" 25 #include "content/public/browser/navigation_entry.h"
23 #include "content/public/browser/render_view_host.h" 26 #include "content/public/browser/render_view_host.h"
24 #include "content/public/browser/render_widget_host.h" 27 #include "content/public/browser/render_widget_host.h"
25 #include "content/public/browser/resource_dispatcher_host.h" 28 #include "content/public/browser/resource_dispatcher_host.h"
26 #include "content/public/browser/web_contents.h" 29 #include "content/public/browser/web_contents.h"
27 #include "content/public/common/browser_side_navigation_policy.h" 30 #include "content/public/common/browser_side_navigation_policy.h"
28 #include "content/public/common/content_switches.h" 31 #include "content/public/common/content_switches.h"
(...skipping 1079 matching lines...) Expand 10 before | Expand all | Expand 10 after
1108 region.bounds.x(), 1111 region.bounds.x(),
1109 region.bounds.y(), 1112 region.bounds.y(),
1110 region.bounds.right(), 1113 region.bounds.right(),
1111 region.bounds.bottom(), 1114 region.bounds.bottom(),
1112 region.draggable ? SkRegion::kUnion_Op : SkRegion::kDifference_Op); 1115 region.draggable ? SkRegion::kUnion_Op : SkRegion::kDifference_Op);
1113 } 1116 }
1114 return sk_region; 1117 return sk_region;
1115 } 1118 }
1116 1119
1117 } // namespace extensions 1120 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/browser/app_window/app_window.h ('k') | extensions/browser/app_window/app_window_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698