Commit 15f8012b authored by tfarina@chromium.org's avatar tfarina@chromium.org

Fix lines longer than 80 characters.

BUG=50266
TEST=None

Review URL: http://codereview.chromium.org/3013038

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53958 0039d316-1c4b-4281-b951-d872f2087c98
parent b866a02d
// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. // Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
...@@ -110,7 +110,8 @@ struct DefaultRefCountedThreadSafeTraits { ...@@ -110,7 +110,8 @@ struct DefaultRefCountedThreadSafeTraits {
// Delete through RefCountedThreadSafe to make child classes only need to be // Delete through RefCountedThreadSafe to make child classes only need to be
// friend with RefCountedThreadSafe instead of this struct, which is an // friend with RefCountedThreadSafe instead of this struct, which is an
// implementation detail. // implementation detail.
RefCountedThreadSafe<T, DefaultRefCountedThreadSafeTraits>::DeleteInternal(x); RefCountedThreadSafe<T,
DefaultRefCountedThreadSafeTraits>::DeleteInternal(x);
} }
}; };
......
...@@ -97,7 +97,8 @@ struct BookmarkDragData { ...@@ -97,7 +97,8 @@ struct BookmarkDragData {
void WriteToClipboard(Profile* profile) const; void WriteToClipboard(Profile* profile) const;
// Reads bookmarks from the general copy/paste clipboard. Prefers data // Reads bookmarks from the general copy/paste clipboard. Prefers data
// written via WriteToClipboard but will also attempt to read a plain bookmark. // written via WriteToClipboard but will also attempt to read a plain
// bookmark.
bool ReadFromClipboard(); bool ReadFromClipboard();
#if defined(OS_MACOSX) #if defined(OS_MACOSX)
// Reads bookmarks that are being dragged from the drag and drop // Reads bookmarks that are being dragged from the drag and drop
......
// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. // Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef CHROME_BROWSER_CHILD_PROCESS_SECURITY_POLICY_H_ #ifndef CHROME_BROWSER_CHILD_PROCESS_SECURITY_POLICY_H_
#define CHROME_BROWSER_CHILD_PROCESS_SECURITY_POLICY_H_ #define CHROME_BROWSER_CHILD_PROCESS_SECURITY_POLICY_H_
#pragma once #pragma once
#include <string>
#include <map> #include <map>
#include <set> #include <set>
#include <string>
#include "base/basictypes.h" #include "base/basictypes.h"
#include "base/gtest_prod_util.h" #include "base/gtest_prod_util.h"
...@@ -116,7 +117,8 @@ class ChildProcessSecurityPolicy { ...@@ -116,7 +117,8 @@ class ChildProcessSecurityPolicy {
private: private:
friend class ChildProcessSecurityPolicyInProcessBrowserTest; friend class ChildProcessSecurityPolicyInProcessBrowserTest;
FRIEND_TEST_ALL_PREFIXES(ChildProcessSecurityPolicyInProcessBrowserTest, NoLeak); FRIEND_TEST_ALL_PREFIXES(ChildProcessSecurityPolicyInProcessBrowserTest,
NoLeak);
class SecurityState; class SecurityState;
......
...@@ -224,8 +224,8 @@ class ImeInput { ...@@ -224,8 +224,8 @@ class ImeInput {
// position without finishing it. // position without finishing it.
void EnableIME(HWND window_handle); void EnableIME(HWND window_handle);
// Disables the IME attached to the given window, i.e. prohibits any user-input // Disables the IME attached to the given window, i.e. prohibits any
// events from being dispatched to the IME. // user-input events from being dispatched to the IME.
// In Chrome, this function is used when: // In Chrome, this function is used when:
// * a renreder process sets its input focus to a password input. // * a renreder process sets its input focus to a password input.
// Parameters // Parameters
......
// Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this // Copyright (c) 2010 The Chromium Authors. All rights reserved.
// source code is governed by a BSD-style license that can be found in the // Use of this source code is governed by a BSD-style license that can be
// LICENSE file. // found in the LICENSE file.
// //
// This file contains ParamTraits templates to support serialization of WebKit // This file contains ParamTraits templates to support serialization of WebKit
// data types over IPC. // data types over IPC.
...@@ -13,12 +13,12 @@ ...@@ -13,12 +13,12 @@
// //
// o Many WebKit structures are not thread-safe. WebString, for example, // o Many WebKit structures are not thread-safe. WebString, for example,
// contains a reference counted buffer, which does not use thread-safe // contains a reference counted buffer, which does not use thread-safe
// reference counting. If we allowed serializing WebString, then we may run // reference counting. If we allowed serializing WebString, then we may
// the risk of introducing subtle thread-safety bugs if people passed a // run the risk of introducing subtle thread-safety bugs if people passed a
// WebString across threads via PostTask(NewRunnableMethod(...)). // WebString across threads via PostTask(NewRunnableMethod(...)).
// //
// o The WebKit API has redundant types for strings, and we should avoid using // o The WebKit API has redundant types for strings, and we should avoid
// those beyond code that interfaces with the WebKit API. // using those beyond code that interfaces with the WebKit API.
#ifndef CHROME_COMMON_WEBKIT_PARAM_TRAITS_H_ #ifndef CHROME_COMMON_WEBKIT_PARAM_TRAITS_H_
#define CHROME_COMMON_WEBKIT_PARAM_TRAITS_H_ #define CHROME_COMMON_WEBKIT_PARAM_TRAITS_H_
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment