Skip to content

Commit b1d7806

Browse files
committed
rebase fix for linux
1 parent b7d5fa9 commit b1d7806

File tree

11 files changed

+12
-34
lines changed

11 files changed

+12
-34
lines changed

.DEPS.git

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ deps = {
3535
Var('git_url') + '/external/googlemock.git@6b1759c3816d574bddde3e1725c51a811c8870e7',
3636
'src/testing/gtest':
3737
Var('git_url') + '/external/googletest.git@a6772271f71672e889776bfe49ec4efd9da036df',
38-
'src/third_party/WebKit':
39-
Var('webkit_url') + Var('webkit_rev'),
38+
#'src/third_party/WebKit':
39+
#Var('webkit_url') + Var('webkit_rev'),
4040
'src/third_party/accessibility-developer-tools':
4141
Var('git_url') + '/external/accessibility-developer-tools.git@2e3c9c8e49277a0ca1eeba510271eb03f9486d8f',
4242
'src/third_party/angle_dx11':
@@ -135,8 +135,8 @@ deps = {
135135
Var('git_url') + '/chromium/deps/acid3.git@6be0a66a1ebd7ebc5abc1b2f405a945f6d871521',
136136
'src/tools/swarm_client':
137137
Var('git_url') + '/chromium/tools/swarm_client.git@51336a32732d4eea3f07e44e4a62c4d8103ef29f',
138-
'src/v8':
139-
Var('git_url') + '/external/v8.git@387c3b089100ae5db9136ef045e71086f007d907',
138+
#'src/v8':
139+
# Var('git_url') + '/external/v8.git@387c3b089100ae5db9136ef045e71086f007d907',
140140
}
141141

142142
deps_os = {

base/message_pump_uv.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#pragma once
88

99
#include "base/message_loop/message_pump.h"
10-
#include "base/time.h"
10+
#include "base/time/time.h"
1111
#include "base/base_export.h"
1212
#include "third_party/node/deps/uv/include/uv.h"
1313

chrome/browser/printing/print_dialog_gtk.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ void PrintDialogGtk::OnJobCompleted(GtkPrintJob* print_job, GError* error) {
406406
LOG(ERROR) << "Printing failed: " << error->message;
407407
if (print_job)
408408
g_object_unref(print_job);
409-
base::FileUtilProxy::DeleteFile(
409+
base::FileUtilProxy::Delete(
410410
BrowserThread::GetMessageLoopProxyForThread(BrowserThread::FILE).get(),
411411
path_to_pdf_,
412412
false,

content/browser/dom_storage/dom_storage_message_filter.cc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
#include "url/gurl.h"
2626

2727
using base::WaitableEvent;
28-
using dom_storage::DomStorageTaskRunner;
2928
using WebKit::WebStorageArea;
3029

3130
namespace content {

content/browser/web_contents/web_contents_impl.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1507,7 +1507,7 @@ void WebContentsImpl::CreateNewWindow(
15071507
AddDestructionObserver(new_contents);
15081508
}
15091509
// Save window features
1510-
new_contents->window_features_ = params.window_features;
1510+
new_contents->window_features_ = params.features;
15111511

15121512
if (delegate_) {
15131513
delegate_->WebContentsCreated(

content/common/dom_storage/dom_storage_map.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ size_t CountBytes(const DOMStorageValuesMap& values) {
2727

2828
} // namespace
2929

30-
size_t DomStorageMap::quota_override_ = 0;
30+
size_t DOMStorageMap::quota_override_ = 0;
3131

3232
DOMStorageMap::DOMStorageMap(size_t quota)
3333
: bytes_used_(0),

content/common/dom_storage/dom_storage_map.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ namespace content {
2121
class CONTENT_EXPORT DOMStorageMap
2222
: public base::RefCountedThreadSafe<DOMStorageMap> {
2323
public:
24-
explicit DomStorageMap(size_t quota);
24+
explicit DOMStorageMap(size_t quota);
2525
static void SetQuotaOverride(size_t quota) {quota_override_ = quota; }
2626

2727
unsigned Length() const;

content/common/view_messages.h

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -150,27 +150,6 @@ IPC_STRUCT_TRAITS_BEGIN(WebKit::WebScreenInfo)
150150
IPC_STRUCT_TRAITS_MEMBER(availableRect)
151151
IPC_STRUCT_TRAITS_END()
152152

153-
IPC_STRUCT_TRAITS_BEGIN(WebKit::WebWindowFeatures)
154-
IPC_STRUCT_TRAITS_MEMBER(x)
155-
IPC_STRUCT_TRAITS_MEMBER(xSet)
156-
IPC_STRUCT_TRAITS_MEMBER(y)
157-
IPC_STRUCT_TRAITS_MEMBER(ySet)
158-
IPC_STRUCT_TRAITS_MEMBER(width)
159-
IPC_STRUCT_TRAITS_MEMBER(widthSet)
160-
IPC_STRUCT_TRAITS_MEMBER(height)
161-
IPC_STRUCT_TRAITS_MEMBER(heightSet)
162-
163-
IPC_STRUCT_TRAITS_MEMBER(menuBarVisible)
164-
IPC_STRUCT_TRAITS_MEMBER(statusBarVisible)
165-
IPC_STRUCT_TRAITS_MEMBER(toolBarVisible)
166-
IPC_STRUCT_TRAITS_MEMBER(locationBarVisible)
167-
IPC_STRUCT_TRAITS_MEMBER(scrollbarsVisible)
168-
IPC_STRUCT_TRAITS_MEMBER(resizable)
169-
170-
IPC_STRUCT_TRAITS_MEMBER(fullscreen)
171-
IPC_STRUCT_TRAITS_MEMBER(dialog)
172-
IPC_STRUCT_TRAITS_END()
173-
174153
IPC_STRUCT_TRAITS_BEGIN(content::MenuItem)
175154
IPC_STRUCT_TRAITS_MEMBER(label)
176155
IPC_STRUCT_TRAITS_MEMBER(tool_tip)

content/renderer/dom_storage/dom_storage_dispatcher.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ DomStorageDispatcher::~DomStorageDispatcher() {
263263
proxy_->Shutdown();
264264
}
265265

266-
scoped_refptr<DomStorageCachedArea> DomStorageDispatcher::OpenCachedArea(
266+
scoped_refptr<DOMStorageCachedArea> DomStorageDispatcher::OpenCachedArea(
267267
int routing_id, int connection_id, int64 namespace_id, const GURL& origin) {
268268
RenderThreadImpl::current()->Send(
269269
new DOMStorageHostMsg_OpenStorageArea(

content/renderer/dom_storage/dom_storage_dispatcher.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class DomStorageDispatcher {
2929
~DomStorageDispatcher();
3030

3131
// Each call to open should be balanced with a call to close.
32-
scoped_refptr<DomStorageCachedArea> OpenCachedArea(int routing_id,
32+
scoped_refptr<DOMStorageCachedArea> OpenCachedArea(int routing_id,
3333
int connection_id,
3434
int64 namespace_id,
3535
const GURL& origin);

0 commit comments

Comments
 (0)