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

Side by Side Diff: content/browser/security_exploit_browsertest.cc

Issue 1549113002: Switch to standard integer types in content/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 12 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 (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 <stdint.h>
6
5 #include "base/command_line.h" 7 #include "base/command_line.h"
6 #include "base/containers/hash_tables.h" 8 #include "base/containers/hash_tables.h"
9 #include "base/macros.h"
7 #include "base/strings/utf_string_conversions.h" 10 #include "base/strings/utf_string_conversions.h"
11 #include "build/build_config.h"
8 #include "content/browser/dom_storage/dom_storage_context_wrapper.h" 12 #include "content/browser/dom_storage/dom_storage_context_wrapper.h"
9 #include "content/browser/dom_storage/session_storage_namespace_impl.h" 13 #include "content/browser/dom_storage/session_storage_namespace_impl.h"
10 #include "content/browser/frame_host/navigator.h" 14 #include "content/browser/frame_host/navigator.h"
11 #include "content/browser/frame_host/render_frame_host_impl.h" 15 #include "content/browser/frame_host/render_frame_host_impl.h"
12 #include "content/browser/renderer_host/render_view_host_factory.h" 16 #include "content/browser/renderer_host/render_view_host_factory.h"
13 #include "content/browser/renderer_host/render_view_host_impl.h" 17 #include "content/browser/renderer_host/render_view_host_impl.h"
14 #include "content/browser/web_contents/web_contents_impl.h" 18 #include "content/browser/web_contents/web_contents_impl.h"
15 #include "content/common/frame_messages.h" 19 #include "content/common/frame_messages.h"
16 #include "content/common/resource_messages.h" 20 #include "content/common/resource_messages.h"
17 #include "content/common/view_messages.h" 21 #include "content/common/view_messages.h"
(...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after
427 RenderProcessHostWatcher::WATCH_FOR_PROCESS_EXIT); 431 RenderProcessHostWatcher::WATCH_FOR_PROCESS_EXIT);
428 IPC::IpcSecurityTestUtil::PwnMessageReceived( 432 IPC::IpcSecurityTestUtil::PwnMessageReceived(
429 web_rfh->GetProcess()->GetChannel(), 433 web_rfh->GetProcess()->GetChannel(),
430 ResourceHostMsg_RequestResource(web_rfh->GetRoutingID(), 1, 434 ResourceHostMsg_RequestResource(web_rfh->GetRoutingID(), 1,
431 invalid_scheme_origin_msg)); 435 invalid_scheme_origin_msg));
432 web_process_killed.Wait(); 436 web_process_killed.Wait();
433 } 437 }
434 } 438 }
435 439
436 } // namespace content 440 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698