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

Unified Diff: chrome/common/nacl_types.cc

Issue 16881004: Move chrome/nacl to components/nacl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Create a zygote folder Created 7 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/nacl_types.h ('k') | chrome/common/render_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/nacl_types.cc
diff --git a/chrome/common/nacl_types.cc b/chrome/common/nacl_types.cc
deleted file mode 100644
index a6c99bc529e0a2720073484d7e9a1352d9be0ea7..0000000000000000000000000000000000000000
--- a/chrome/common/nacl_types.cc
+++ /dev/null
@@ -1,55 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/common/nacl_types.h"
-
-namespace nacl {
-
-NaClStartParams::NaClStartParams()
- : validation_cache_enabled(false),
- enable_exception_handling(false),
- enable_debug_stub(false),
- enable_ipc_proxy(false),
- uses_irt(false),
- enable_dyncode_syscalls(false) {
-}
-
-NaClStartParams::~NaClStartParams() {
-}
-
-NaClLaunchParams::NaClLaunchParams()
- : render_view_id(0),
- permission_bits(0),
- uses_irt(false),
- enable_dyncode_syscalls(false),
- enable_exception_handling(false) {
-}
-
-NaClLaunchParams::NaClLaunchParams(const std::string& manifest_url,
- int render_view_id,
- uint32 permission_bits,
- bool uses_irt,
- bool enable_dyncode_syscalls,
- bool enable_exception_handling)
- : manifest_url(manifest_url),
- render_view_id(render_view_id),
- permission_bits(permission_bits),
- uses_irt(uses_irt),
- enable_dyncode_syscalls(enable_dyncode_syscalls),
- enable_exception_handling(enable_exception_handling) {
-}
-
-NaClLaunchParams::NaClLaunchParams(const NaClLaunchParams& l) {
- manifest_url = l.manifest_url;
- render_view_id = l.render_view_id;
- permission_bits = l.permission_bits;
- uses_irt = l.uses_irt;
- enable_dyncode_syscalls = l.enable_dyncode_syscalls;
- enable_exception_handling = l.enable_exception_handling;
-}
-
-NaClLaunchParams::~NaClLaunchParams() {
-}
-
-} // namespace nacl
« no previous file with comments | « chrome/common/nacl_types.h ('k') | chrome/common/render_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698