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

Side by Side Diff: ipc/ipc_message.cc

Issue 526001: Mac: Make devtools window dockable. (Closed)
Patch Set: copyediting Created 10 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
« no previous file with comments | « chrome/browser/debugger/devtools_window.cc ('k') | webkit/glue/devtools/js/devtools.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 "ipc/ipc_message.h" 5 #include "ipc/ipc_message.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 9
10 #if defined(OS_POSIX) 10 #if defined(OS_POSIX)
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 return descriptor->fd >= 0; 116 return descriptor->fd >= 0;
117 } 117 }
118 118
119 void Message::EnsureFileDescriptorSet() { 119 void Message::EnsureFileDescriptorSet() {
120 if (file_descriptor_set_.get() == NULL) 120 if (file_descriptor_set_.get() == NULL)
121 file_descriptor_set_ = new FileDescriptorSet; 121 file_descriptor_set_ = new FileDescriptorSet;
122 } 122 }
123 123
124 #endif 124 #endif
125 125
126 } // namespace IPC 126 } // namespace IPC
OLDNEW
« no previous file with comments | « chrome/browser/debugger/devtools_window.cc ('k') | webkit/glue/devtools/js/devtools.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698